    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--primary);
        text-decoration: none;
    }

    .logo-icon {
        font-size: 1.8rem;
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    nav a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        transition: color 0.2s ease;
    }

    nav a:hover {
        color: var(--primary);
    }

    nav a.active {
        color: var(--primary);
        border-bottom: 2px solid var(--primary);
        padding-bottom: 5px;
    }

    .page-header {
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        color: white;
        padding: 6rem 2rem 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-header h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .page-header p {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
        position: relative;
        z-index: 1;
    }

    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        top: 0;
        left: 0;
    }

    .floating-element {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .e1 {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -100px;
    }

    .e2 {
        width: 200px;
        height: 200px;
        top: 60%;
        right: -50px;
    }

    .e3 {
        width: 150px;
        height: 150px;
        bottom: -50px;
        left: 30%;
    }

    .feature-sections {
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem 2rem;
    }

    .feature-section {
        display: flex;
        align-items: center;
        margin-bottom: 6rem;
        gap: 4rem;
    }

    .feature-section:nth-child(even) {
        flex-direction: row-reverse;
    }

    .feature-content {
        flex: 1;
    }

    .feature-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .feature-image img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        transition: transform 0.3s ease;
    }

    .feature-image img:hover {
        transform: translateY(-10px);
    }

    .feature-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .feature-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--text-dark);
        opacity: 0.9;
        margin-bottom: 1.5rem;
    }

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

    .feature-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .feature-list li i {
        color: var(--primary);
        margin-right: 1rem;
        margin-top: 0.25rem;
    }

    .cta-section {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        color: white;
        padding: 4rem 2rem;
        text-align: center;
        margin-top: 2rem;
    }

    .cta-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .cta-btn {
        display: inline-block;
        background: white;
        color: var(--primary);
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    }

    footer {
        background-color: var(--bg-dark);
        color: var(--text-light);
        padding: 3rem 2rem;
        margin-top: auto;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1;
        min-width: 200px;
        margin-bottom: 2rem;
    }

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: white;
    }

    .footer-column ul {
        list-style: none;
    }

    .footer-column ul li {
        margin-bottom: 0.8rem;
    }

    .footer-column a {
        color: var(--text-light);
        opacity: 0.8;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .footer-column a:hover {
        opacity: 1;
    }

    .copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        font-size: 0.9rem;
        opacity: 0.7;
    }

    @media (max-width: 1024px) {
        .feature-section {
            flex-direction: column;
            gap: 2rem;
        }

        .feature-section:nth-child(even) {
            flex-direction: column;
        }

        .page-header h1 {
            font-size: 2.5rem;
        }

        nav ul {
            gap: 1rem;
        }
    }

    @media (max-width: 768px) {
        header {
            padding: 1rem;
        }

        nav ul {
            display: none;
        }

        .logo {
            font-size: 1.2rem;
        }

        .page-header h1 {
            font-size: 2.2rem;
        }

        .feature-content h2 {
            font-size: 2rem;
        }

        .footer-column {
            flex: 100%;
        }
    }

    /* Mobile menu */
    .mobile-menu-btn {
        display: none;
        font-size: 1.5rem;
        color: var(--text-dark);
        background: none;
        border: none;
        cursor: pointer;
    }

    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }

        .nav-menu.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--bg-light);
            padding: 1rem 0;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            z-index: 100;
        }

        .nav-menu.active li {
            margin: 0.8rem 0;
            text-align: center;
        }
    }