/* Hero Section */
    .edta-hero {
        background: linear-gradient(135deg, var(--primary-teal) 0%, #2d7a7a 100%);
        padding: 8rem 2rem 5rem;
        text-align: center;
        color: white;
    }
    
    .edta-hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .edta-hero h2 {
        font-size: 1.8rem;
        color: var(--secondary-gold);
        margin-bottom: 0;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    /* Main Content with Image */
    .content-with-image-section {
        padding: 5rem 2rem;
        background: white;
    }
    
    .content-image-container {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 60% 40%;
        gap: 4rem;
        align-items: start;
    }
    
    .content-side {
        padding-right: 2rem;
    }
    
    .image-side {
        position: sticky;
        top: 100px;
    }
    
    .edta-image-wrapper {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    }
    
    .edta-image-wrapper img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }
    
    .image-overlay-badge {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: linear-gradient(135deg, rgba(0, 168, 150, 0.95) 0%, rgba(45, 122, 122, 0.95) 100%);
        padding: 1.5rem;
        border-radius: 15px;
        color: white;
    }
    
    .image-overlay-badge h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        color: var(--secondary-gold);
    }
    
    .image-overlay-badge p {
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.6;
    }
    
    /* Content Sections */
    .content-card {
        background: white;
        padding: 2.5rem;
        margin-bottom: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        border-left: 5px solid var(--primary-teal);
    }
    
    .content-card.gold-border {
        border-left-color: var(--secondary-gold);
        background: linear-gradient(135deg, rgba(244, 208, 63, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    }
    
    .content-card h3 {
        color: var(--primary-teal);
        font-size: 2rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .content-card p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #555;
        margin-bottom: 1rem;
    }
    
    .content-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .content-card ul li {
        padding: 0.8rem 0 0.8rem 2.5rem;
        position: relative;
        font-size: 1.05rem;
        line-height: 1.7;
        color: #555;
    }
    
    .content-card ul li::before {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: var(--secondary-gold);
        font-size: 1.1rem;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(0, 168, 150, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
        border-radius: 12px;
        border-left: 4px solid var(--secondary-gold);
    }
    
    .benefit-item h4 {
        color: var(--primary-teal);
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }
    
    .benefit-item p {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #666;
        margin: 0;
    }
    
    /* Note Box */
    .note-box {
        background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%);
        padding: 1.5rem;
        border-radius: 12px;
        border-left: 4px solid var(--secondary-gold);
        margin-top: 2rem;
    }
    
    .note-box p {
        font-size: 1rem;
        font-style: italic;
        color: #555;
        margin: 0;
    }
    
    /* CTA Section */
    .edta-cta {
        background: linear-gradient(135deg, var(--primary-teal) 0%, #2d7a7a 100%);
        padding: 4rem 2rem;
        text-align: center;
        color: white;
    }
    
    .edta-cta h3 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .edta-cta p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-gold-large {
        background: var(--secondary-gold);
        color: var(--neutral-dark);
        padding: 1.2rem 3.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 700;
        display: inline-block;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
    }
    
    .btn-gold-large:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(244, 208, 63, 0.6);
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
        .content-image-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        .content-side {
            padding-right: 0;
        }
        
        .image-side {
            position: relative;
            top: 0;
        }
    }
    
    @media (max-width: 768px) {
        .edta-hero h1 {
            font-size: 2.5rem;
        }
        
        .edta-hero h2 {
            font-size: 1.4rem;
        }
        
        .edta-image-wrapper img {
            height: 350px;
        }
        
        .content-card {
            padding: 1.5rem;
        }
        
        .content-card h3 {
            font-size: 1.6rem;
        }
    }