    /* 
     * LCTS - Lincoln County Technical Skills & Services
     * Style: Warm, Friendly, Rounded, Emerald & Cream
     */

    :root {
        /* Color Palette */
        --emerald-900: #064e3b;
        --emerald-800: #065f46;
        --emerald-600: #059669;
        --emerald-500: #10b981;
        --emerald-100: #d1fae5;
        --emerald-50:  #ecfdf5;
        
        --cream-50:  #fdfbf7;
        --cream-100: #f9f7f2;
        --cream-200: #f3efe6;
        
        --text-dark:   #1f2937;
        --text-gray:   #4b5563;
        --text-light:  #6b7280;
        --white:       #ffffff;
        
        /* Spacing & Layout */
        --container-width: 1200px;
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 24px;
        --radius-xl: 32px;
        
        /* Shadows */
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --shadow-soft: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
    }

    /* Reset & Base */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Open Sans', sans-serif;
        background-color: var(--cream-50);
        color: var(--text-dark);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Fredoka', sans-serif;
        font-weight: 600;
        line-height: 1.2;
        color: var(--emerald-900);
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: all 0.2s ease;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        font-weight: 600;
        font-family: 'Fredoka', sans-serif;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.2s ease;
        font-size: 1rem;
    }

    .btn-primary {
        background-color: var(--emerald-600);
        color: var(--white);
        box-shadow: var(--shadow-md);
    }

    .btn-primary:hover {
        background-color: var(--emerald-800);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .btn-secondary {
        background-color: var(--white);
        color: var(--emerald-800);
        border: 2px solid var(--emerald-100);
    }

    .btn-secondary:hover {
        border-color: var(--emerald-600);
        background-color: var(--emerald-50);
    }

    .btn-outline {
        background-color: transparent;
        color: var(--emerald-600);
        border: 2px solid var(--emerald-600);
    }

    .btn-outline:hover {
        background-color: var(--emerald-600);
        color: var(--white);
    }

    .btn-full {
        width: 100%;
    }

    /* Typography Utilities */
    .section-tag {
        display: inline-block;
        background-color: var(--emerald-100);
        color: var(--emerald-800);
        padding: 0.25rem 0.75rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1rem;
        font-family: 'Fredoka', sans-serif;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-header h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        color: var(--text-gray);
        font-size: 1.125rem;
    }

    /* Navbar */
    .navbar {
        background-color: rgba(253, 251, 247, 0.95);
        backdrop-filter: blur(10px);
        position: sticky;
        top: 0;
        z-index: 1000;
        border-bottom: 1px solid var(--cream-200);
        padding: 1rem 0;
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Fredoka', sans-serif;
        font-weight: 600;
        font-size: 1.25rem;
        color: var(--emerald-900);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-link {
        color: var(--text-dark);
        font-weight: 500;
    }

    .nav-link:hover {
        color: var(--emerald-600);
    }

    .nav-cta {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--emerald-900);
    }

    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        display: flex;
        flex-direction: column;
        gap: 1rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-bottom-left-radius: var(--radius-lg);
        border-bottom-right-radius: var(--radius-lg);
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-link {
        font-size: 1.1rem;
        color: var(--text-dark);
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--cream-200);
    }

    .mobile-cta {
        border: none;
        background-color: var(--emerald-600);
        color: var(--white);
        text-align: center;
        border-radius: var(--radius-md);
        padding: 0.75rem;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 0 6rem;
        background: linear-gradient(135deg, var(--cream-50) 0%, var(--emerald-50) 100%);
        overflow: hidden;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hero-content {
        max-width: 540px;
    }

    .badge {
        display: inline-block;
        background-color: var(--white);
        color: var(--emerald-800);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--emerald-100);
    }

    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: var(--emerald-900);
    }

    .hero p {
        font-size: 1.25rem;
        color: var(--text-gray);
        margin-bottom: 2rem;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .trust-indicators {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        color: var(--text-dark);
        font-size: 0.9rem;
    }

    .hero-image {
        position: relative;
    }

    .image-wrapper {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-soft);
    }

    .image-wrapper img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .floating-card {
        position: absolute;
        bottom: 2rem;
        left: -1rem;
        background-color: var(--white);
        padding: 1rem 1.5rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        display: flex;
        align-items: center;
        gap: 1rem;
        animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .card-icon {
        width: 40px;
        height: 40px;
        background-color: var(--emerald-100);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--emerald-800);
    }

    .card-text {
        display: flex;
        flex-direction: column;
    }

    .card-text strong {
        font-family: 'Fredoka', sans-serif;
        color: var(--emerald-900);
    }

    .card-text span {
        font-size: 0.875rem;
        color: var(--text-light);
    }

    /* About Section */
    .about-section {
        padding: 6rem 0;
        background-color: var(--white);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-text p {
        margin-bottom: 1.5rem;
        color: var(--text-gray);
    }

    .about-text .lead {
        font-size: 1.25rem;
        color: var(--text-dark);
        font-weight: 500;
    }

    .about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        background-color: var(--cream-50);
        padding: 2rem 1rem;
        border-radius: var(--radius-lg);
        text-align: center;
        border: 1px solid var(--cream-200);
    }

    .stat-number {
        font-family: 'Fredoka', sans-serif;
        font-size: 2rem;
        color: var(--emerald-600);
        margin-bottom: 0.5rem;
    }

    .stat-label {
        color: var(--text-gray);
        font-size: 0.875rem;
        font-weight: 600;
    }

    /* Services Section */
    .services-section {
        padding: 6rem 0;
        background-color: var(--cream-50);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }

    .service-card {
        background-color: var(--white);
        padding: 2.5rem;
        border-radius: var(--radius-xl);
        border: 1px solid var(--cream-200);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--emerald-100);
    }

    .icon-box {
        width: 64px;
        height: 64px;
        background-color: var(--emerald-50);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--emerald-600);
        margin-bottom: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--emerald-900);
    }

    .service-card p {
        color: var(--text-gray);
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .feature-list {
        list-style: none;
        margin-bottom: 2rem;
    }

    .feature-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.75rem;
        color: var(--text-dark);
        font-size: 0.95rem;
    }

    .feature-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--emerald-600);
        font-weight: bold;
    }

    /* Why Us Section */
    .why-us-section {
        padding: 6rem 0;
        background-color: var(--white);
    }

    .why-us-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .why-content h2 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .why-content > p {
        color: var(--text-gray);
        margin-bottom: 2rem;
    }

    .reason-item {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .reason-icon {
        width: 48px;
        height: 48px;
        background-color: var(--emerald-100);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--emerald-800);
        flex-shrink: 0;
    }

    .reason-text h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: var(--emerald-900);
    }

    .reason-text p {
        color: var(--text-gray);
        font-size: 0.95rem;
    }

    .why-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-soft);
    }

    /* Contact Section */
    .contact-section {
        padding: 6rem 0;
        background-color: var(--emerald-900);
        color: var(--white);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        background-color: var(--white);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .contact-info {
        padding: 4rem;
        background-color: var(--cream-50);
        color: var(--text-dark);
    }

    .contact-info .section-tag {
        background-color: var(--emerald-100);
    }

    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--emerald-900);
    }

    .contact-info > p {
        color: var(--text-gray);
        margin-bottom: 2.5rem;
    }

    .info-item {
        display: flex;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        background-color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--emerald-600);
        box-shadow: var(--shadow-sm);
        flex-shrink: 0;
    }

    .info-text strong {
        display: block;
        color: var(--emerald-900);
        margin-bottom: 0.25rem;
        font-family: 'Fredoka', sans-serif;
    }

    .info-text p, .info-text a {
        color: var(--text-gray);
        margin: 0;
        font-size: 1rem;
    }

    .info-text a:hover {
        color: var(--emerald-600);
    }

    .contact-form-wrapper {
        padding: 4rem;
        background-color: var(--white);
    }

    .contact-form h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        color: var(--emerald-900);
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--text-dark);
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 2px solid var(--cream-200);
        border-radius: var(--radius-md);
        font-family: 'Open Sans', sans-serif;
        font-size: 1rem;
        transition: border-color 0.2s;
        background-color: var(--cream-50);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--emerald-600);
        background-color: var(--white);
    }

    .success-message {
        margin-top: 1rem;
        padding: 1rem;
        background-color: var(--emerald-50);
        color: var(--emerald-800);
        border-radius: var(--radius-md);
        text-align: center;
        font-weight: 600;
    }

    /* Footer */
    .footer {
        background-color: var(--cream-100);
        padding: 4rem 0 2rem;
        border-top: 1px solid var(--cream-200);
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 3rem;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-brand h3 {
        color: var(--emerald-900);
        margin-bottom: 0.75rem;
        font-size: 1.25rem;
    }

    .footer-brand p {
        color: var(--text-gray);
        max-width: 300px;
    }

    .footer-links {
        display: flex;
        gap: 2rem;
    }

    .footer-links a {
        color: var(--text-dark);
        font-weight: 600;
    }

    .footer-links a:hover {
        color: var(--emerald-600);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid var(--cream-200);
        color: var(--text-light);
        font-size: 0.875rem;
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .hero-container,
        .about-content,
        .why-us-grid,
        .contact-wrapper {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .hero {
            padding: 3rem 0;
            text-align: center;
        }

        .hero-content {
            max-width: 100%;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero-actions {
            justify-content: center;
        }

        .trust-indicators {
            justify-content: center;
        }

        .hero-image {
            order: -1;
        }

        .image-wrapper img {
            height: 350px;
        }

        .floating-card {
            left: 1rem;
            bottom: 1rem;
        }

        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .about-stats {
            grid-template-columns: repeat(3, 1fr);
        }

        .contact-info,
        .contact-form-wrapper {
            padding: 2rem;
        }
    }

    @media (max-width: 640px) {
        .hero h1 {
            font-size: 2rem;
        }

        .section-header h2 {
            font-size: 1.75rem;
        }

        .about-stats {
            grid-template-columns: 1fr;
        }

        .hero-actions {
            flex-direction: column;
        }

        .btn {
            width: 100%;
        }
    }
