/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --error-color: #dc2626;
    --success-color: #10b981;
    
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Icons Styles */
.inline-icon {
    color: currentColor;
    width: 1.2em;
    height: 1.2em;
    display: inline;
    vertical-align: -0.2em;
}

.benefit-icon,
.program-icon,
.mission-icon,
.card-icon,
.contact-icon,
.stat-icon,
.alt-icon {
    font-size: 48px;
    line-height: 1;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .benefit-icon,
    .program-icon,
    .mission-icon,
    .card-icon,
    .stat-icon,
    .alt-icon {
        font-size: 36px;
    }
}


/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
    transition: bottom 0.5s ease;
    border-top: 4px solid var(--primary-color);
}

.cookie-popup.show {
    bottom: 0;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        bottom: -200px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.cookie-content a:hover {
    border-bottom-color: var(--accent-color);
    color: #fff;
}

.cookie-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
}

.cookie-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-popup {
        padding: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-content p {
        margin-bottom: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
}


/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}


/* Button Styles - General */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px) skewX(-2deg);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}


/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    padding: 30px 0;
    margin: 0;
}

.disclaimer-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.disclaimer-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.disclaimer-content h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.disclaimer-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.7;
}


/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}


/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(248, 249, 251, 0.8), rgba(240, 244, 255, 0.8));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 30px 100%, 0 30px);
    border: 3px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.program-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 255, 0.95));
    border-radius: 0;
    padding: 40px 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.15);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
    backdrop-filter: blur(10px);
}

.program-card::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.18), inset -2px -2px 10px rgba(255, 255, 255, 0.4);
    border-color: var(--primary-color);
}

.program-card:hover::before {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
}

.program-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.98), rgba(219, 234, 254, 0.98));
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.program-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.program-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.program-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    display: block;
}

.program-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.program-duration {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.program-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.program-features {
    list-style: none;
    margin-bottom: 25px;
}

.program-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}


/* Programs Highlight Section (Homepage) */
.programs-highlight-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.programs-highlight-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(37, 99, 235, 0.02) 20px,
        rgba(37, 99, 235, 0.02) 40px
    );
    animation: rotateBg 60s linear infinite;
    z-index: 0;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.programs-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.program-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 244, 255, 0.95));
    border-radius: 0px;
    padding: 35px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    border: 2px solid rgba(37, 99, 235, 0.15);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    backdrop-filter: blur(10px);
}

.program-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: movePattern 20s linear infinite;
}

.program-highlight:hover {
    transform: translateY(-8px) skewY(-1deg);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-color);
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.program-highlight.featured {
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(219, 234, 254, 0.95));
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.program-highlight-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.program-highlight-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.program-highlight h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.program-highlight-duration {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.program-highlight p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.section-cta {
    text-align: center;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}


/* Benefits Highlight Section (Homepage) */
.benefits-highlight-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.98));
    position: relative;
    overflow: hidden;
}

.benefits-highlight-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.benefits-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.benefit-highlight {
    text-align: left;
    padding: 35px;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.8), rgba(248, 249, 255, 0.8));
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.2);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.benefit-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.benefit-highlight:hover {
    background: linear-gradient(135deg, rgba(224, 232, 255, 0.9), rgba(240, 244, 255, 0.9));
    transform: translateY(-5px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2), inset -2px -2px 5px rgba(255, 255, 255, 0.5);
    border-color: var(--primary-color);
}

.benefit-highlight:hover::before {
    left: 100%;
}

.benefit-highlight-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.benefit-highlight h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-highlight p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}


/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, rgba(248, 249, 251, 0.95), rgba(240, 244, 255, 0.95));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(37, 99, 235, 0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)" /></svg>') repeat;
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.9));
    padding: 35px;
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.12);
    overflow: hidden;
    clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    backdrop-filter: blur(8px);
}

.benefit-item::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(37, 99, 235, 0.03) 10px,
        rgba(37, 99, 235, 0.03) 20px
    );
    pointer-events: none;
}

.benefit-item:hover {
    transform: translateY(-8px) skewX(-2deg);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15), inset 0 1px 10px rgba(255, 255, 255, 0.6);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}


/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.98));
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.02) 0%, transparent 50%, rgba(37, 99, 235, 0.02) 100%);
    z-index: 0;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-number {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 2;
    clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    transition: var(--transition);
}

.timeline-number:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.timeline-content {
    flex: 1;
    padding-top: 8px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}


/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #eff6ff 0%, rgba(200, 220, 255, 0.5) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 244, 255, 0.95));
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.2);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 15px;
    font-size: 120px;
    color: rgba(37, 99, 235, 0.1);
    font-weight: 700;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) skewY(-1deg);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.2), inset 0 1px 10px rgba(255, 255, 255, 0.5);
    border-color: var(--primary-color);
}

.testimonial-card:hover::before {
    color: rgba(37, 99, 235, 0.2);
    top: -10px;
    right: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}


/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(248, 249, 251, 0.97), rgba(240, 244, 255, 0.97));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -40%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.95), rgba(240, 244, 255, 0.95));
    padding: 45px;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.2);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    backdrop-filter: blur(10px);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: movePattern 30s linear infinite;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
    position: relative;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(107, 114, 128, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), inset 0 0 8px rgba(37, 99, 235, 0.08);
    background: rgba(239, 246, 255, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d1b3d 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)" /></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-note {
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links li {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Unique Visual Elements */
.section-header {
    position: relative;
    z-index: 10;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    opacity: 0;
    animation: underlineSlide 0.6s ease forwards;
    background-size: 200% 100%;
}

@keyframes underlineSlide {
    0% { opacity: 0; width: 0; left: 50%; }
    100% { opacity: 1; width: 100%; left: 0; }
}

/* Floating Elements Decoration */
section {
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(37, 99, 235, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
}


/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn {
        width: 100%;
    }
    
    .disclaimer-box {
        flex-direction: column;
        text-align: center;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .timeline-item {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}


/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-header h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 22px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Active Navigation State */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.95), rgba(248, 249, 251, 0.95));
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -40%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.mission-item {
    text-align: center;
    padding: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 244, 255, 0.92));
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.15);
    overflow: hidden;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    backdrop-filter: blur(10px);
}

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-item:hover {
    transform: translateY(-10px) rotateX(3deg);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.2), inset 0 1px 15px rgba(255, 255, 255, 0.5);
    border-color: var(--primary-color);
}

.mission-item:hover::before {
    transform: scaleX(1);
}

.mission-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mission-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mission-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 244, 255, 0.98));
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
    z-index: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.team-member {
    text-align: center;
    padding: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(248, 249, 255, 0.93));
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.13);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    backdrop-filter: blur(8px);
}

.team-member::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
    transition: top 0.4s ease;
    pointer-events: none;
}

.team-member:hover {
    transform: translateY(-10px) perspective(1000px) rotateX(4deg);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.18), inset -2px 2px 10px rgba(255, 255, 255, 0.4);
    border-color: var(--primary-color);
}

.team-member:hover::before {
    top: 0;
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--bg-light);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.member-bio {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Detailed Benefits */
.detailed-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.98));
    position: relative;
    overflow: hidden;
}

.detailed-benefits::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.detailed-grid {
    display: grid;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.detailed-item {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 255, 0.9));
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.15);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 calc(100% - 20px));
    backdrop-filter: blur(8px);
}

.detailed-item::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.detailed-item:hover {
    transform: translateX(15px) translateY(-5px) perspective(1000px) rotateY(-2deg);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15), inset 2px 0 10px rgba(255, 255, 255, 0.4);
    border-left-width: 4px;
}

.detailed-item:hover::before {
    transform: scaleY(1);
}

.detail-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.detail-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.detail-content ul {
    list-style: none;
    padding: 0;
}

.detail-content ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-light);
}

.detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Comparison Table */
.comparison-others {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(248, 249, 251, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.comparison-others::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.comparison-content {
    margin-top: 60px;
    overflow-x: auto;
    position: relative;
    z-index: 1;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-weight: 600;
    font-size: 18px;
}

.highlight-col {
    background: rgba(37, 99, 235, 0.05);
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

/* Statistics Section */
.statistics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.95), rgba(248, 249, 251, 0.95));
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 45px 30px;
    background: linear-gradient(135deg, rgba(240, 244, 255, 0.9), rgba(248, 249, 255, 0.9));
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.15);
    overflow: hidden;
    clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    backdrop-filter: blur(8px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg, rgba(37, 99, 235, 0.1), rgba(245, 158, 11, 0.1), rgba(37, 99, 235, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05) perspective(1000px) rotateX(5deg);
    box-shadow: 0 35px 70px rgba(37, 99, 235, 0.2), inset 0 1px 15px rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, rgba(224, 232, 255, 0.95), rgba(240, 244, 255, 0.95));
    border-color: var(--primary-color);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 16px;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    padding: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 249, 255, 0.92));
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    border-top: 2px solid rgba(37, 99, 235, 0.2);
    border-right: 2px solid rgba(37, 99, 235, 0.2);
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
}

.faq-item:hover {
    transform: translateX(8px) translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-left-width: 6px;
}

.faq-item:hover::before {
    width: 6px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Program Price */
.program-price {
    margin: 20px 0;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.price-label {
    color: var(--text-light);
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="15" fill="rgba(255,255,255,0.03)"/><circle cx="70" cy="70" r="20" fill="rgba(255,255,255,0.02)"/><path d="M10 50 Q 25 40 40 50 T 70 50" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>') repeat;
    opacity: 0.5;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Social */
.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.contact-social h4 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 14px;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-placeholder {
    margin-top: 60px;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.map-content {
    padding: 60px 40px;
    text-align: center;
}

.map-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.map-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.map-note {
    margin: 30px auto;
    max-width: 600px;
    line-height: 1.8;
}

/* Alternative Contacts */
.alt-contacts {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, rgba(240, 244, 255, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.alt-contacts::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 30px,
        rgba(37, 99, 235, 0.02) 30px,
        rgba(37, 99, 235, 0.02) 60px
    );
    z-index: 0;
}

.alt-contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.alt-contact-card {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(240, 244, 255, 0.93));
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.15);
    overflow: hidden;
    clip-path: polygon(0 15px, 15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.alt-contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(37, 99, 235, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alt-contact-card:hover {
    transform: translateY(-12px) rotateY(2deg);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.15), inset 0 1px 10px rgba(255, 255, 255, 0.5);
    border-color: var(--primary-color);
}

.alt-contact-card:hover::after {
    opacity: 1;
}

.alt-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.alt-contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.alt-contact-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Comparison Table Wrapper */
.comparison-table-wrapper {
    margin-top: 60px;
    overflow-x: auto;
}

.comparison-section {
    padding: 80px 0;
    background: white;
}

/* Responsive Design for Highlights */
@media (max-width: 1200px) {
    .programs-highlight-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .benefit-highlight {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .programs-highlight-section {
        padding: 80px 0;
    }
    
    .programs-highlight-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .program-highlight {
        padding: 25px 20px;
    }
    
    .program-highlight h3 {
        font-size: 18px;
    }
    
    .benefits-highlight-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-highlight {
        padding: 25px;
        text-align: center;
    }
    
    .benefit-highlight h3 {
        font-size: 20px;
    }
    
    .btn-lg {
        width: 100%;
    }
}

/* Responsive Updates for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .detailed-item {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-number {
        margin: 0 auto;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}