:root {
        --primary: #0A4D68;
        --primary-light: #088395;
        --accent: #05BFDB;
        --dark: #001524;
        --gray: #445566;
        --light-gray: #E8ECEF;
        --white: #FFFFFF;
        --success: #00C896;
        --warning: #FFB800;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'IBM Plex Sans', sans-serif;
        color: var(--dark);
        line-height: 1.6;
        background: var(--white);
        overflow-x: hidden;
    }
    
    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    }
    
    nav .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        text-decoration: none;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
    }
    
    .logo-name {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 1.4rem;
        color: var(--primary);
        letter-spacing: -0.5px;
        line-height: 1;
    }
    
    .logo-tagline {
        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 0.65rem;
        font-weight: 600;
        color: var(--primary-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 0.2rem;
    }
    
    .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
    }
    
    .nav-links a {
        color: var(--gray);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }
    
    .nav-links a:hover {
        color: var(--primary);
    }
    
    .cta-button {
        background: var(--primary);
        color: white;
        padding: 0.8rem 1.8rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(10, 77, 104, 0.2);
    }
    
    .cta-button:hover {
        background: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(10, 77, 104, 0.3);
    }
    
    /* Hero Section */
    .hero {
        padding: 160px 2rem 80px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(5, 191, 219, 0.3) 0%, transparent 70%);
        top: -200px;
        right: -200px;
        border-radius: 50%;
        animation: pulse 4s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.3; }
        50% { transform: scale(1.1); opacity: 0.5; }
    }
    
    .hero .container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    
    .hero-logo {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        animation: fadeInUp 0.8s ease-out;
    }
    
    .hero-logo svg {
        width: 70px;
        height: 70px;
    }
    
    .hero-logo-text {
        text-align: left;
    }
    
    .hero-logo-name {
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 2.5rem;
        letter-spacing: -0.5px;
        line-height: 1;
        margin-bottom: 0.3rem;
    }
    
    .hero-logo-tagline {
        font-family: 'IBM Plex Sans', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: var(--accent);
    }
    
    .hero h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        animation: fadeInUp 0.8s ease-out 0.2s backwards;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero .subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        opacity: 0.95;
        max-width: 700px;
        animation: fadeInUp 0.8s ease-out 0.4s backwards;
    }
    
    .hero-cta {
        display: flex;
        gap: 1.5rem;
        animation: fadeInUp 0.8s ease-out 0.6s backwards;
    }
    
    .hero-cta .primary-btn {
        background: var(--accent);
        color: var(--dark);
        padding: 1rem 2.5rem;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s;
        box-shadow: 0 6px 25px rgba(5, 191, 219, 0.4);
    }
    
    .hero-cta .primary-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(5, 191, 219, 0.6);
    }
    
    .hero-cta .secondary-btn {
        background: transparent;
        color: white;
        border: 2px solid white;
        padding: 1rem 2.5rem;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s;
    }
    
    .hero-cta .secondary-btn:hover {
        background: white;
        color: var(--primary);
    }
    
    /* Trust Badges */
    .trust-badges {
        background: var(--light-gray);
        padding: 3rem 2rem;
    }
    
    .trust-badges .container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
    }
    
    .badge {
        background: white;
        padding: 2rem 1.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }
    
    .badge:hover {
        transform: translateY(-5px);
    }
    
    .badge-number {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary);
    }
    
    .badge-label {
        color: var(--gray);
        font-weight: 600;
        margin-top: 0.5rem;
    }
    
    /* Services Section */
    .services {
        padding: 80px 2rem;
        background: white;
    }
    
    .services .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .section-title {
        font-family: 'Montserrat', sans-serif;
        text-align: center;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: var(--gray);
        margin-bottom: 4rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        background: white;
        border: 2px solid var(--light-gray);
        border-radius: 16px;
        padding: 2.5rem;
        transition: all 0.3s;
    }
    
    .service-card:hover {
        border-color: var(--accent);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(5, 191, 219, 0.15);
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 1rem;
    }
    
    .service-card ul {
        list-style: none;
        margin-top: 1rem;
    }
    
    .service-card li {
        padding: 0.5rem 0;
        color: var(--gray);
        position: relative;
        padding-left: 1.5rem;
    }
    
    .service-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--success);
        font-weight: 700;
    }

    .service-more-link { 
        display: inline-block; 
        margin-top: 1rem; 
        font-size: 0.9rem; 
        color: #088395; 
        text-decoration: none; 
        font-weight: 500; 
        transition: color 0.2s ease; 
    } 
    
    .service-more-link:hover { 
        color: #05BFDB; 
    }

    /* about */
    .about {
        padding: 80px 2rem;
        background: var(--light-gray);
    }

    .about .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* about me */
    .about-me {
        padding: 80px 2rem;
        background: white;
    }

    .about-me .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .about-me-photo img {
        width: 230px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .about-me-photo {
        text-align: center;
        margin-bottom: 2rem;
    }

    .about-me-text {
        flex: 1;
        min-width: 280px;
    }
    
    /* Pricing Section */
    .pricing {
        padding: 80px 2rem;
        background: var(--light-gray);
    }
    
    .pricing .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .pricing-card {
        background: white;
        border-radius: 20px;
        padding: 3rem;
        max-width: 600px;
        margin: 0 auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border: 3px solid var(--accent);
    }
    
    .pricing-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .pricing-badge {
        background: var(--accent);
        color: var(--dark);
        padding: 0.5rem 1.5rem;
        border-radius: 20px;
        font-weight: 700;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .price {
        font-family: 'Montserrat', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        color: var(--primary);
    }
    
    .price-subtitle {
        color: var(--gray);
        font-size: 1.1rem;
    }
    
    .pricing-features {
        list-style: none;
        margin: 2rem 0;
    }
    
    .pricing-features li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--light-gray);
        color: var(--gray);
        font-size: 1.1rem;
        position: relative;
        padding-left: 2rem;
    }
    
    .pricing-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--success);
        font-weight: 700;
        font-size: 1.3rem;
    }
    
    .availability {
        background: var(--primary);
        color: white;
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
        margin-top: 2rem;
    }
    
    .availability h4 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    /* Expertise Section */
    .expertise {
        padding: 80px 2rem;
        background: white;
    }
    
    .expertise .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .expertise-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .expertise-item {
        text-align: center;
        padding: 2rem;
    }
    
    .expertise-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .expertise-item h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.3rem;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }
    
    .expertise-item p {
        color: var(--gray);
    }
    
    /* Local SEO Section */
    .local-seo {
        padding: 60px 2rem;
        background: var(--light-gray);
    }
    
    .local-seo .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
    
    .local-seo h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 2rem;
    }
    
    .service-areas {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .area-tag {
        background: white;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        color: var(--gray);
        font-weight: 600;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    /* Contact Section */
    .contact {
        padding: 80px 2rem;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        color: white;
    }
    
    .contact .container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
    
    .contact h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .contact p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
        opacity: 0.95;
    }
    
    .contact-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .contact-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        padding: 2rem;
        transition: all 0.3s;
    }
    
    .contact-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }
    
    .contact-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-card h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-card a {
        color: var(--accent);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
    }
    
    .contact-card a:hover {
        text-decoration: underline;
    }
    
    /* Footer */
    footer {
        background: var(--dark);
        color: white;
        padding: 3rem 2rem;
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }
    
    .footer-section h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: var(--accent);
    }
    
    .footer-section ul {
        list-style: none;
    }
    
    .footer-section li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-section a:hover {
        color: white;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.7;
    }

    .breadcrumb {
        margin: 20px auto 0 auto;
        max-width: 1200px;
        padding: 0.5rem 2rem;
        font-size: 0.9rem;
        color: #444;
        background: rgba(255,255,255,0.85);
        backdrop-filter: blur(4px);
        border-radius: 6px;
    }


    .breadcrumb-bar { 
        position: sticky; 
        top: 70px; /* Höhe deiner Navigation */ 
        z-index: 900; 
        width: 100%; 
        background: #ffffff; 
        border-bottom: 1px solid #e5e5e5; 
    } 
    
    .breadcrumb-container { 
        max-width: 1200px; 
        margin: 0 auto; 
        padding: 0.75rem 2rem; 
        font-size: 0.9rem; 
        color: #666; 
    } 
    
    .breadcrumb-container a { 
        color: #088395; 
        text-decoration: none; 
        font-weight: 500; 
    } 
    
    .breadcrumb-container a:hover { 
        color: #05BFDB; 
    }

    .service-note { 
        margin-top: 0.75rem; 
        font-size: 0.9rem; 
        color: #555; 
    }

    .network-diagram {
        padding: 80px 2rem;
        background: #f8f9fa;
    }

    .diagram-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .diagram-box {
        background: white;
        padding: 20px 30px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        text-align: center;
        max-width: 300px;
    }

    .diagram-box.small {
        max-width: 220px;
    }

    .diagram-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .diagram-line {
        font-size: 2rem;
        color: #088395;
    }

    .diagram-endpoints {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    
    /* Responsive */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }
        
        .logo-name {
            font-size: 1.2rem;
        }
        
        .logo-tagline {
            font-size: 0.55rem;
        }
        
        .hero {
            padding: 140px 2rem 60px;
        }
        
        .hero-logo svg {
            width: 50px;
            height: 50px;
        }
        
        .hero-logo-name {
            font-size: 1.8rem;
        }
        
        .hero-logo-tagline {
            font-size: 0.75rem;
        }
        
        .hero h1 {
            font-size: 2.2rem;
        }
        
        .hero .subtitle {
            font-size: 1.1rem;
        }
        
        .hero-cta {
            flex-direction: column;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ============================================
   VoIP-Seite Spezifisches CSS
   Diesen Code ans Ende deiner style.css Datei einfügen
   ============================================ */

/* Navigation angepasst (gleiche Struktur wie index.html) */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.nav-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.5rem;
}

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
}

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

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 77, 104, 0.2);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 77, 104, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

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

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Page Hero */
.page-hero {
    padding: 160px 2rem 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(5, 191, 219, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.page-intro {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Problems Section */
.problems-section {
    padding: 80px 2rem;
    background: var(--light-gray);
}

.problems-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 3rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
}

.problem-card {
    background: white;
    border: 2px solid #ffcccb;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.problem-card p {
    color: var(--gray);
    line-height: 1.6;
}

.problems-solution {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.1rem;
    color: var(--gray);
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--success);
}

/* Info Section */
.info-section {
    padding: 80px 2rem;
    background: white;
}

.info-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(5, 191, 219, 0.15);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Packages Section */
.packages-section {
    padding: 80px 2rem;
    background: var(--light-gray);
}

.packages-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.packages-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
}

.package-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(5, 191, 219, 0.2);
}

.package-featured {
    border-color: var(--accent);
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(5, 191, 219, 0.15);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.package-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.package-desc {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.package-card ul {
    list-style: none;
    margin: 2rem 0;
}

.package-card li {
    padding: 0.75rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.package-card li:last-child {
    border-bottom: none;
}

.package-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Process Section */
.process-section {
    padding: 80px 2rem;
    background: white;
}

.process-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 2rem;
    background: var(--light-gray);
}

.faq-section h2 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--accent);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
}

.faq-cta {
    display: block;
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.faq-cta:hover {
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-brand {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-brand strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--accent);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .page-hero {
        padding: 140px 2rem 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .problems-grid,
    .info-grid,
    .packages-grid,
    .process-steps,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .package-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}