/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3a9293;
    --secondary-color: #cf4580;
    --tertiary-color: #dca200;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-gray: #666666;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(58, 146, 147, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(207, 69, 128, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(220, 162, 0, 0.02) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

body {
    font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: 
        /* Geometric pattern */
        linear-gradient(45deg, rgba(58, 146, 147, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(58, 146, 147, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(207, 69, 128, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(207, 69, 128, 0.03) 75%),
        /* Floating circles */
        radial-gradient(circle at 20% 80%, rgba(220, 162, 0, 0.08) 15%, transparent 15%),
        radial-gradient(circle at 80% 20%, rgba(58, 146, 147, 0.06) 20%, transparent 20%),
        radial-gradient(circle at 40% 40%, rgba(207, 69, 128, 0.04) 10%, transparent 10%),
        /* Base gradient */
        linear-gradient(135deg, #f8fdfd 0%, #ffffff 25%, #fdfbf8 50%, #ffffff 75%, #f8fdfd 100%);
    background-size: 
        60px 60px,
        60px 60px,
        60px 60px,
        60px 60px,
        800px 800px,
        600px 600px,
        400px 400px,
        100% 100%;
    background-attachment: fixed;
    min-height: 100vh;
}

section {
    background: transparent !important;
}

section::before, section::after {
    display: none !important;
}

.container {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--white) 0%, #f0fdfd 100%);
    padding: 5rem 0 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
    animation: fadeInUp 1s ease;
}

.hero-content .highlight {
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 25px;
    margin: 0 0.2rem;
    display: inline-block;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: typeIn 0.8s ease-out forwards;
}

/* Individual colors for each highlight */
.hero-content .highlight:nth-of-type(1) {
    background: var(--primary-color);
    box-shadow: 0 4px 15px rgba(58, 146, 147, 0.3),
                inset 2px 2px 8px rgba(255, 255, 255, 0.2);
    animation-delay: 0.5s;
}

.hero-content .highlight:nth-of-type(2) {
    background: var(--secondary-color);
    animation-delay: 1s;
    box-shadow: 0 4px 15px rgba(207, 69, 128, 0.3),
                inset 2px 2px 8px rgba(255, 255, 255, 0.2);
}

.hero-content .highlight:nth-of-type(3) {
    animation-delay: 1.5s;
    background: var(--tertiary-color);
    box-shadow: 0 4px 15px rgba(220, 162, 0, 0.3),
                inset 2px 2px 8px rgba(255, 255, 255, 0.2);
}

.hero-content .highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.hero-content .highlight:hover::before {
    left: 100%;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    animation: typeWriter 0.8s ease-out forwards;
    animation-delay: inherit;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s both;
    padding: 0 1rem;
}

/* ===== CTA BUTTON (SMOOTH MODERN DESIGN) ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366 !important;
    color: var(--white);
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25) !important;
    animation: fadeInUp 1s ease 0.4s both;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35) !important;
    background: #128C7E !important;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover::after {
    width: 120px;
    height: 120px;
}

.cta-button:active {
    transform: translateY(-2px);
    transition: transform 0.1s ease;
}

.cta-button.secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #b8306b 100%);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #b8306b 0%, var(--tertiary-color) 100%);
}

/* ===== DECORATIVE FLOATING SHAPES ===== */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--tertiary-color);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTION 2: PROBLEMS SECTION ===== */
.problems-section {
    background: var(--light-gray);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.problems-grid {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

.checklist-container {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(58, 146, 147, 0.1);
    position: relative;
    overflow: hidden;
}

.checklist-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
}

.checklist-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.checklist-intro h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.checklist-intro p {
    color: var(--text-gray);
    font-size: 1rem;
    font-style: italic;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(58, 146, 147, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.problem-item:last-child {
    border-bottom: none;
}

.problem-item:hover {
    background: rgba(58, 146, 147, 0.02);
    padding-left: 1rem;
    border-radius: 10px;
}

.checkbox {
    margin-right: 1.5rem;
    margin-top: 0.2rem;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox::after {
    content: '⚠️'; /* or whichever icon you chose */
    font-size: 28px;
}

/* Hover effect - just scale the icon */
.problem-item:hover .checkbox {
    transform: scale(1.2);
}

.problem-text {
    flex-grow: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.problem-text strong {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    position: relative;
    display: inline-block;
    transform: translateY(-1px);
}

/* Different colors for each highlighted word */
.problem-item:nth-child(1) .problem-text strong {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.problem-item:nth-child(2) .problem-text strong {
    background: linear-gradient(135deg, var(--primary-color), #4db5b6);
    box-shadow: 0 2px 8px rgba(58, 146, 147, 0.3);
}

.problem-item:nth-child(3) .problem-text strong {
    background: linear-gradient(135deg, var(--secondary-color), #e56ba3);
    box-shadow: 0 2px 8px rgba(207, 69, 128, 0.3);
}

.problem-item:nth-child(4) .problem-text strong {
    background: linear-gradient(135deg, var(--tertiary-color), #e6b42d);
    box-shadow: 0 2px 8px rgba(220, 162, 0, 0.3);
}

.problem-item:nth-child(5) .problem-text strong {
    background: linear-gradient(135deg, #5c6bc0, #7e8ce6);
    box-shadow: 0 2px 8px rgba(92, 107, 192, 0.3);
}

/* Hover effect untuk extra vibrancy */
.problem-item:hover .problem-text strong {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.problems-conclusion {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.conclusion-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(58, 146, 147, 0.02) 100%);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border: 2px solid rgba(58, 146, 147, 0.1);
    position: relative;
    overflow: hidden;
}

.conclusion-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 146, 147, 0.05) 0%, transparent 70%);
}

.conclusion-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.conclusion-card p {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.highlight-text {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

/* ===== SECTION 3: SCI EXPLANATION SECTION ===== */
.sci-section {
    background: linear-gradient(135deg, var(--white) 0%, rgba(58, 146, 147, 0.02) 50%, var(--white) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.sci-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.sci-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.sci-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.sci-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sci-definition {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(58, 146, 147, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.sci-definition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--tertiary-color));
}

.sci-definition::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(58, 146, 147, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.sci-intro {
    margin-bottom: 2.5rem;
}

.sci-intro h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.sci-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.sci-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 1.8rem 2rem;
    margin: 1rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
    position: relative;
    background: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Individual benefit item colors */
.benefit-item:nth-child(1) {
    background: linear-gradient(135deg, #fff5f5 0%, #ffeaea 100%);
    border-color: rgba(255, 107, 107, 0.2);
}

.benefit-item:nth-child(2) {
    background: linear-gradient(135deg, #f0fdfd 0%, #e6fafa 100%);
    border-color: rgba(58, 146, 147, 0.2);
}

.benefit-item:nth-child(3) {
    background: linear-gradient(135deg, #fdf2ff 0%, #f9e6ff 100%);
    border-color: rgba(207, 69, 128, 0.2);
}

.benefit-item:nth-child(4) {
    background: linear-gradient(135deg, #fffbf0 0%, #fff4d6 100%);
    border-color: rgba(220, 162, 0, 0.2);
}

.benefit-item:nth-child(5) {
    background: linear-gradient(135deg, #f3f4ff 0%, #e8eaff 100%);
    border-color: rgba(92, 107, 192, 0.2);
}

/* Enhanced hover effects */
.benefit-item:hover {
    transform: translateY(-8px) translateX(5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.benefit-item:nth-child(1):hover {
    background: linear-gradient(135deg, #ffebeb 0%, #ffe0e0 100%);
    border-color: #ff6b6b;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.benefit-item:nth-child(2):hover {
    background: linear-gradient(135deg, #e6fafa 0%, #d9f7f7 100%);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(58, 146, 147, 0.2);
}

.benefit-item:nth-child(3):hover {
    background: linear-gradient(135deg, #f9e6ff 0%, #f0d1ff 100%);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(207, 69, 128, 0.2);
}

.benefit-item:nth-child(4):hover {
    background: linear-gradient(135deg, #fff4d6 0%, #ffecb3 100%);
    border-color: var(--tertiary-color);
    box-shadow: 0 15px 35px rgba(220, 162, 0, 0.2);
}

.benefit-item:nth-child(5):hover {
    background: linear-gradient(135deg, #e8eaff 0%, #d1d9ff 100%);
    border-color: #5c6bc0;
    box-shadow: 0 15px 35px rgba(92, 107, 192, 0.2);
}

/* Decorative elements for each benefit item */
.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-emoji {
    font-size: 2.2rem;
    margin-right: 1.8rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.benefit-item:hover .benefit-emoji {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Emoji specific colors */
.benefit-item:nth-child(1) .benefit-emoji {
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.benefit-item:nth-child(2) .benefit-emoji {
    box-shadow: 0 4px 15px rgba(58, 146, 147, 0.2);
}

.benefit-item:nth-child(3) .benefit-emoji {
    box-shadow: 0 4px 15px rgba(207, 69, 128, 0.2);
}

.benefit-item:nth-child(4) .benefit-emoji {
    box-shadow: 0 4px 15px rgba(220, 162, 0, 0.2);
}

.benefit-item:nth-child(5) .benefit-emoji {
    box-shadow: 0 4px 15px rgba(92, 107, 192, 0.2);
}

.benefit-text {
    flex-grow: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.benefit-text strong {
    background: linear-gradient(135deg, var(--primary-color), #4db5b6);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(58, 146, 147, 0.3);
    position: relative;
    display: inline-block;
    transform: translateY(-1px);
}

/* Different colors for each benefit item */
.benefit-item:nth-child(1) .benefit-text strong {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.benefit-item:nth-child(2) .benefit-text strong {
    background: linear-gradient(135deg, var(--primary-color), #4db5b6);
    box-shadow: 0 2px 8px rgba(58, 146, 147, 0.3);
}

.benefit-item:nth-child(3) .benefit-text strong {
    background: linear-gradient(135deg, var(--secondary-color), #e56ba3);
    box-shadow: 0 2px 8px rgba(207, 69, 128, 0.3);
}

.benefit-item:nth-child(4) .benefit-text strong {
    background: linear-gradient(135deg, var(--tertiary-color), #e6b42d);
    box-shadow: 0 2px 8px rgba(220, 162, 0, 0.3);
}

.benefit-item:nth-child(5) .benefit-text strong {
    background: linear-gradient(135deg, #5c6bc0, #7e8ce6);
    box-shadow: 0 2px 8px rgba(92, 107, 192, 0.3);
}

/* Hover effect */
.benefit-item:hover .benefit-text strong {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Visual highlight for key phrases */
.key-highlight {
    background: linear-gradient(135deg, rgba(58, 146, 147, 0.1), rgba(207, 69, 128, 0.05));
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 600;
    border: 1px solid rgba(58, 146, 147, 0.2);
}

.sci-footer {
    background: linear-gradient(135deg, rgba(58, 146, 147, 0.05) 0%, rgba(207, 69, 128, 0.03) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(58, 146, 147, 0.1);
    position: relative;
    overflow: hidden;
}

.sci-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 162, 0, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.sci-footer p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.sci-footer .highlight-span {
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
}

.sci-footer .highlight-span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
    opacity: 0.7;
}

/* ===== SECTION 4: LEARNING OUTCOMES WITH UNIFORM IMAGES ===== */
.learning-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(207, 69, 128, 0.02) 50%, var(--white) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.learning-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.learning-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.learning-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.learning-intro {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.learning-intro p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary-color);
}

/* ===== SKILLS GRID WITH UNIFORM IMAGES ===== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.skill-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(58, 146, 147, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(58, 146, 147, 0.15);
    border-color: var(--primary-color);
}

/* ===== UNIFORM IMAGE CONTAINER ===== */
.skill-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, var(--light-gray), rgba(58, 146, 147, 0.1));
}

.skill-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    /* Better image rendering for any format */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimizeQuality;
    transform: translateZ(0);
}

.skill-image img.loaded,
.skill-image img[src]:not([src=""]) {
    opacity: 1;
}

.skill-card:hover .skill-image img {
    transform: scale(1.05) translateZ(0);
}

/* ===== SKILL OVERLAY (emoji backup) ===== */
.skill-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skill-overlay .skill-emoji {
    font-size: 1.5rem;
}

.skill-card:hover .skill-overlay {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===== UPDATED SKILL NUMBER POSITION ===== */
.skill-number {
    position: absolute;
    top: 15px;
    left: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

/* ===== SKILL CONTENT (Updated spacing) ===== */
.skill-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 1.5rem 2rem 1rem 2rem;
    line-height: 1.3;
}

.skill-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 2rem 1.5rem 2rem;
    flex-grow: 1;
}

.skill-benefits {
    list-style: none;
    padding: 0;
    margin: 0 2rem 2rem 2rem;
}

.skill-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.skill-benefits li::before {
    content: '✓';
    background: var(--primary-color);
    color: var(--white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

/* ===== IMAGE FALLBACK GRADIENTS ===== */
.skill-card:nth-child(1) .skill-image:not(:has(img)) {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 142, 142, 0.1) 100%);
}

.skill-card:nth-child(2) .skill-image:not(:has(img)) {
    background: linear-gradient(135deg, rgba(58, 146, 147, 0.2) 0%, rgba(77, 181, 182, 0.1) 100%);
}

.skill-card:nth-child(3) .skill-image:not(:has(img)) {
    background: linear-gradient(135deg, rgba(207, 69, 128, 0.2) 0%, rgba(229, 107, 163, 0.1) 100%);
}

.skill-card:nth-child(4) .skill-image:not(:has(img)) {
    background: linear-gradient(135deg, rgba(220, 162, 0, 0.2) 0%, rgba(230, 180, 45, 0.1) 100%);
}

.skill-card:nth-child(5) .skill-image:not(:has(img)) {
    background: linear-gradient(135deg, rgba(92, 107, 192, 0.2) 0%, rgba(126, 140, 230, 0.1) 100%);
}

.skill-card:nth-child(6) .skill-image:not(:has(img)) {
    background: linear-gradient(135deg, rgba(38, 166, 154, 0.2) 0%, rgba(77, 182, 172, 0.1) 100%);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 767px) {
    .skills-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .skill-card {
        margin-bottom: 1rem;
        min-height: 350px;
    }
    
    .skill-image {
        height: 180px;
    }
    
    .skill-title {
        font-size: 1.2rem;
        margin: 1.2rem 1.5rem 0.8rem 1.5rem;
    }
    
    .skill-description {
        margin: 0 1.5rem 1.2rem 1.5rem;
    }
    
    .skill-benefits {
        margin: 0 1.5rem 1.5rem 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .skill-image {
        height: 190px;
    }
    
    .skills-grid {
        max-width: 100%;
        gap: 1.8rem;
    }
    
    .skill-card {
        min-height: 380px;
    }
}

/* ===== SMOOTH LOADING ANIMATION ===== */
.skill-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.skill-card:nth-child(1) { animation-delay: 0.1s; }
.skill-card:nth-child(2) { animation-delay: 0.2s; }
.skill-card:nth-child(3) { animation-delay: 0.3s; }
.skill-card:nth-child(4) { animation-delay: 0.4s; }
.skill-card:nth-child(5) { animation-delay: 0.5s; }
.skill-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CONCLUSION SECTION ===== */
.learning-conclusion {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(58, 146, 147, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

.learning-conclusion::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.conclusion-content {
    position: relative;
    z-index: 2;
}

.conclusion-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.conclusion-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.highlight-stat {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin: 0 0.2rem;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .conclusion-content h3 {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .highlight-stat {
        display: inline-block;
        white-space: nowrap;
    }
}

/* ===== SECTION 5: PROGRAM PROCESS ===== */
.program-process-section {
    background: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Session Format Cards */
.session-format {
    margin-bottom: 5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.session-format h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.session-format h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.format-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.format-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.format-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.format-card:hover::before {
    transform: scaleX(1);
}

.format-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.format-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: block;
    background: linear-gradient(135deg, rgba(58, 146, 147, 0.1), rgba(207, 69, 128, 0.05));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.format-card:nth-child(1) .format-icon {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 142, 0.05));
}

.format-card:nth-child(2) .format-icon {
    background: linear-gradient(135deg, rgba(58, 146, 147, 0.1), rgba(77, 181, 182, 0.05));
}

.format-card:nth-child(3) .format-icon {
    background: linear-gradient(135deg, rgba(207, 69, 128, 0.1), rgba(229, 107, 163, 0.05));
}

.format-card:hover .format-icon {
    transform: scale(1.1) rotate(5deg);
}

.format-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.format-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Schedule Details */
.schedule-details {
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.schedule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 146, 147, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-item:hover::before {
    opacity: 1;
}

.schedule-item:nth-child(2) {
    border-left-color: var(--secondary-color);
}

.schedule-item:nth-child(3) {
    border-left-color: var(--tertiary-color);
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.schedule-icon {
    font-size: 2.2rem;
    background: rgba(58, 146, 147, 0.1);
    padding: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-item:nth-child(2) .schedule-icon {
    background: rgba(207, 69, 128, 0.1);
}

.schedule-item:nth-child(3) .schedule-icon {
    background: rgba(220, 162, 0, 0.1);
}

.schedule-item:hover .schedule-icon {
    transform: scale(1.1);
}

.schedule-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.schedule-text p {
    color: var(--text-gray);
    line-height: 1.6;
}

.schedule-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Learning Timeline */
.learning-timeline {
    margin-bottom: 5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.learning-timeline h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.learning-timeline h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--tertiary-color));
    border-radius: 2px;
}

.timeline-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* ===== TIMELINE WITH CURVED DOTTED CONNECTION ===== */
.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: column;
}

/* Dotted connecting lines between cards */
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 60px;
    background: repeating-linear-gradient(
        to bottom,
        var(--primary-color) 0px,
        var(--primary-color) 6px,
        transparent 6px,
        transparent 12px
    );
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.5;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(58, 146, 147, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-marker:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(58, 146, 147, 0.4);
}

.timeline-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 1.5rem 0 0 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(58, 146, 147, 0.1);
    flex: 1;
    text-align: center;
    max-width: 500px;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: center;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -24px;
    border-right-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -24px;
    border-left-color: var(--white);
}

.timeline-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-skills {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.timeline-item:nth-child(even) .timeline-skills {
    justify-content: center;
}

.skill-tag {
    background: rgba(58, 146, 147, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(58, 146, 147, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Process CTA */
.process-cta {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(58, 146, 147, 0.02) 100%);
    border-radius: 25px;
    padding: 3rem;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 2px solid rgba(58, 146, 147, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(207, 69, 128, 0.03) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.cta-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ===== PROGRESSIVE DISCLOSURE FEATURE ===== */
.skill-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid rgba(58, 146, 147, 0.1);
    margin-top: 1rem;
    padding-top: 0;
}

.skill-card.expanded .skill-details {
    max-height: 200px;
    padding-top: 1rem;
}

.expand-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.expand-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.skill-card {
    animation: fadeInUp 0.6s ease forwards;
}

.skill-card:nth-child(1) { animation-delay: 0.1s; }
.skill-card:nth-child(2) { animation-delay: 0.2s; }
.skill-card:nth-child(3) { animation-delay: 0.3s; }
.skill-card:nth-child(4) { animation-delay: 0.4s; }
.skill-card:nth-child(5) { animation-delay: 0.5s; }
.skill-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

@keyframes typeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes typeWriter {
    from {
        width: 0;
        opacity: 0.8;
    }
    to {
        width: 100%;
        opacity: 0;
    }
}

/* ===== SECTION 8: FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(135deg, var(--white) 0%, rgba(58, 146, 147, 0.02) 50%, var(--light-gray) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(58, 146, 147, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(58, 146, 147, 0.12);
    border-color: var(--primary-color);
}

.faq-question {
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.faq-question h3 {
    padding: 2rem 2.5rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    display: flex;
    align-items: center;
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary-color);
}

.faq-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(58, 146, 147, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(58, 146, 147, 0.4);
}

.faq-toggle {
    margin-left: auto;
    width: 30px;
    height: 30px;
    background: rgba(58, 146, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, rgba(58, 146, 147, 0.02) 0%, var(--white) 100%);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2.5rem 2rem 2.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(58, 146, 147, 0.1);
}

.faq-answer strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Individual FAQ item styling for visual variety */
.faq-item:nth-child(1) .faq-number {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.faq-item:nth-child(2) .faq-number {
    background: linear-gradient(135deg, var(--primary-color), #4db5b6);
    box-shadow: 0 4px 15px rgba(58, 146, 147, 0.3);
}

.faq-item:nth-child(3) .faq-number {
    background: linear-gradient(135deg, var(--secondary-color), #e56ba3);
    box-shadow: 0 4px 15px rgba(207, 69, 128, 0.3);
}

.faq-item:nth-child(4) .faq-number {
    background: linear-gradient(135deg, var(--tertiary-color), #e6b42d);
    box-shadow: 0 4px 15px rgba(220, 162, 0, 0.3);
}

/* FAQ CTA Section */
.faq-cta {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.faq-cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 25px;
    padding: 3rem;
    max-width: 600px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(58, 146, 147, 0.2);
}

.faq-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.faq-cta-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.faq-cta-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.faq-cta-card .cta-button {
    background: var(--white);
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.faq-cta-card .cta-button:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Animation for the FAQ items appearing */
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

/* Rotating animation for CTA background */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE DESIGN FOR FAQ ===== */

/* Tablet */
@media (min-width: 768px) {
    .faq-question h3 {
        font-size: 1.3rem;
        padding: 2.5rem 3rem;
    }
    
    .faq-answer p {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 3rem 2.5rem 3rem;
    }
    
    .faq-cta-card {
        padding: 3.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .faq-question h3 {
        font-size: 1.4rem;
    }
    
    .faq-answer p {
        font-size: 1.15rem;
    }
    
    .faq-cta-card {
        padding: 4rem;
    }
    
    .faq-cta-card h3 {
        font-size: 1.8rem;
    }
    
    .faq-cta-card p {
        font-size: 1.2rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-container {
        margin-bottom: 3rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding: 1.8rem 2rem;
    }
    
    .faq-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        margin-right: 1rem;
    }
    
    .faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 250px;
        padding: 0 2rem 1.5rem 2rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
    
    .faq-cta-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .faq-cta-card h3 {
        font-size: 1.4rem;
    }
    
    .faq-cta-card p {
        font-size: 1rem;
    }
}

.team-section {
    background: linear-gradient(135deg, var(--white) 0%, rgba(58, 146, 147, 0.02) 30%, rgba(220, 162, 0, 0.03) 70%, var(--white) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.team-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.team-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.team-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-left: 4px solid var(--secondary-color);
    position: relative;
}

/* ===== QUALIFICATIONS GRID ===== */
.qualifications-section {
    position: relative;
    z-index: 2;
}

.qualifications-header {
    text-align: center;
    margin-bottom: 3rem;
}

.qualifications-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.qualifications-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-style: italic;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.qualification-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(58, 146, 147, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.qualification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.qualification-card:hover::before {
    transform: scaleX(1);
}

.qualification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(58, 146, 147, 0.15);
    border-color: var(--primary-color);
}

.qualification-card:nth-child(1) {
    background: linear-gradient(135deg, #fff5f5 0%, #ffeaea 100%);
}

.qualification-card:nth-child(2) {
    background: linear-gradient(135deg, #f0fdfd 0%, #e6fafa 100%);
}

.qualification-card:nth-child(3) {
    background: linear-gradient(135deg, #fffbf0 0%, #fff4d6 100%);
}

.qualification-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.qualification-card:nth-child(1) .qualification-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.qualification-card:nth-child(2) .qualification-icon {
    background: linear-gradient(135deg, var(--primary-color), #4db5b6);
    box-shadow: 0 8px 25px rgba(58, 146, 147, 0.3);
}

.qualification-card:nth-child(3) .qualification-icon {
    background: linear-gradient(135deg, var(--tertiary-color), #e6b42d);
    box-shadow: 0 8px 25px rgba(220, 162, 0, 0.3);
}

.qualification-card:hover .qualification-icon {
    transform: scale(1.1) rotate(8deg);
}

.qualification-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.qualification-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.qualification-highlights {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.qualification-highlights li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.qualification-highlights li::before {
    content: 'âœ“';
    background: var(--primary-color);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet and Medium Screens */
@media (min-width: 768px) and (max-width: 1023px) {
    .team-header h2 {
        font-size: 2.5rem;
    }

    .team-intro p {
        font-size: 1.1rem;
        padding: 2.5rem 2rem;
    }

    .qualifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .qualification-card {
        padding: 2.5rem 2rem;
        min-height: 420px;
    }

    .qualification-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }

    .qualification-title {
        font-size: 1.3rem;
    }

    .qualification-description {
        font-size: 0.95rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .team-header h2 {
        font-size: 3.2rem;
    }

    .team-intro p {
        font-size: 1.3rem;
        padding: 3rem;
    }

    .qualifications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .qualification-card {
        min-height: 480px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .team-header h2 {
        font-size: 3.5rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .team-section {
        padding: 4rem 0;
    }

    .team-header {
        margin-bottom: 3rem;
    }

    .team-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .team-intro p {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem 3rem 0.5rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .qualifications-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .qualification-card {
        padding: 2.5rem 2rem;
        margin: 0;
        min-height: auto;
    }

    .qualification-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .qualification-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .qualification-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .qualification-highlights li {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }
}

/* ===== TESTIMONIALS SECTION - LEARNING OUTCOMES CARD STYLE ===== */
.testimonials-section {
    background: linear-gradient(135deg, var(--white) 0%, rgba(58, 146, 147, 0.02) 50%, var(--light-gray) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 162, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.testimonials-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonials-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonials-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary-color);
}

/* ===== TESTIMONIALS GRID - LEARNING CARD STYLE ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0; /* No padding - image takes full width */
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(58, 146, 147, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(58, 146, 147, 0.15);
    border-color: var(--primary-color);
}

/* ===== TESTIMONIAL IMAGE CONTAINER - TALLER VERSION ===== */
.testimonial-image {
    position: relative;
    width: 100%;
    height: 220px; /* Increased from 180px to 220px */
    overflow: hidden;
    border-radius: 20px 20px 0 0; /* Rounded top corners only */
    background: linear-gradient(135deg, var(--light-gray), rgba(58, 146, 147, 0.1));
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Covers the area without distortion */
    object-position: center; /* Centers the image */
    transition: all 0.4s ease;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    /* Better image rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimizeQuality;
    transform: translateZ(0);
}

.testimonial-image img.loaded,
.testimonial-image img[src]:not([src=""]) {
    opacity: 1;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05) translateZ(0);
}

/* ===== TESTIMONIAL OVERLAY - SAME STYLE AS LEARNING CARDS ===== */
.testimonial-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-overlay .quote-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
    box-shadow: none;
}

.testimonial-card:hover .testimonial-overlay {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===== TESTIMONIAL CONTENT AREA - PADDED LIKE LEARNING CARDS ===== */
.testimonial-content {
    padding: 2rem 2rem 2rem 2rem; /* Same padding style as learning cards */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Testimonial text */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    flex-grow: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(58, 146, 147, 0.2);
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: rgba(58, 146, 147, 0.2);
    position: absolute;
    bottom: -35px;
    right: -10px;
    font-family: serif;
}

/* Author info */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(58, 146, 147, 0.1);
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author-details {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===== IMAGE FALLBACK GRADIENTS ===== */
.testimonial-card:nth-child(1) .testimonial-image:not(:has(img)) {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 142, 142, 0.1) 100%);
}

.testimonial-card:nth-child(2) .testimonial-image:not(:has(img)) {
    background: linear-gradient(135deg, rgba(58, 146, 147, 0.2) 0%, rgba(77, 181, 182, 0.1) 100%);
}

.testimonial-card:nth-child(3) .testimonial-image:not(:has(img)) {
    background: linear-gradient(135deg, rgba(207, 69, 128, 0.2) 0%, rgba(229, 107, 163, 0.1) 100%);
}

/* ===== CTA SECTION ===== */
.testimonials-cta {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.cta-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 2px solid rgba(58, 146, 147, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 146, 147, 0.03) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--secondary-color), #b8306b);
    color: var(--white);
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(207, 69, 128, 0.25);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(207, 69, 128, 0.35);
    background: linear-gradient(135deg, #b8306b, var(--primary-color));
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

/* Staggered animation for cards */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet */
@media (min-width: 768px) {
    .container {
        max-width: 750px;
        padding: 0 40px;
    }

    .testimonials-header h2 {
        font-size: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .cta-card {
        padding: 3.5rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 60px;
    }

    .testimonials-header h2 {
        font-size: 3.2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-card {
        padding: 4rem;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1.2rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 80px;
    }

    .testimonials-header h2 {
        font-size: 3.5rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-header {
        margin-bottom: 3rem;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonials-intro {
        padding: 1.2rem 1.5rem;
        margin: 0 1rem;
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .testimonial-card {
        margin: 0;
        min-height: 380px; /* Increased to accommodate taller image */
    }

    .testimonial-image {
        height: 180px; /* Taller on mobile too - increased from 160px */
    }

    .testimonial-content {
        padding: 1.5rem; /* Smaller padding on mobile */
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-details {
        font-size: 0.85rem;
    }

    .cta-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .cta-content h3 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* ===== CLOSING CTA SECTION ===== */
.closing-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(58, 146, 147, 0.03) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.urgency-header {
    text-align: center;
    margin-bottom: 4rem;
}

.main-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.emphasis {
    color: var(--secondary-color);
    font-style: italic;
}

.sub-headline {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.key-insight {
    color: var(--primary-color);
    font-weight: 700;
}

.benefits-recap {
    margin-top: 5rem;
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(58, 146, 147, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(58, 146, 147, 0.03);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.beautiful-cta-section {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(58, 146, 147, 0.1);
}

.beautiful-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.beautiful-cta-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.beautiful-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(58, 146, 147, 0.3);
}

.beautiful-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(58, 146, 147, 0.4);
}

/* Mobile responsive */
@media (max-width: 767px) {
    .closing-section {
        padding: 4rem 0;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .beautiful-cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
        margin: 0 auto;
        display: flex;
    }
}

/* ===== SIMPLE VIDEO SECTION ===== */
.video-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: var(--white);
    padding: 1rem;
}

.video-wrapper video {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 1;
    transition: all 0.3s ease;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    margin-left: 5px;
}

.video-description {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.video-description h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.simple-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.simple-benefits li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(58, 146, 147, 0.1);
}

.simple-benefits li:last-child {
    border-bottom: none;
}

.simple-cta {
    text-align: center;
    padding: 1.5rem;
    background: rgba(58, 146, 147, 0.05);
    border-radius: 15px;
}

.simple-cta p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-wrapper video {
        height: 250px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 40px;
        height: 40px;
    }
    
    .video-description {
        padding: 2rem;
    }
}