 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Poppins', 'Helvetica Neue', sans-serif;
            background: #f9fafc;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Poppins', 'Helvetica Neue', sans-serif;
            background: #ffffff;
            color: #1a2c3e;
            line-height: 1.5;
        }

/* ========== SECTION 1: ABOUT US (SPLIT LAYOUT) ========== */
.sec1-about-section {
    padding: 80px 0 60px;
    background: #ffffff;
}

.sec1-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.sec1-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.sec1-left-col {
    flex: 1;
    min-width: 280px;
}

.sec1-right-col {
    flex: 1;
    min-width: 280px;
    position: relative;
}

/* left column typography */
.sec1-kicker {
    display: inline-block;
    background: #eef2ff;
    color: #1E6DF2;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.sec1-headline {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0A2540;
    margin-bottom: 24px;
}

.sec1-green-highlight {
    color: #4CAF50;
}

.sec1-description {
    color: #4a5c72;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 90%;
}

.sec1-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1E6DF2;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(30,109,242,0.25);
}

.sec1-cta-btn:hover {
    background: #0E5AD6;
    transform: translateY(-2px);
}

.sec1-cta-btn:hover i {
    transform: translateX(4px);
}

.sec1-cta-btn i {
    transition: transform 0.2s;
}

/* right column - image frame with decorations */
.sec1-image-frame {
    position: relative;
    border-radius: 30px 30px 30px 30px;
    overflow: visible;
}

/* main image */
.sec1-team-img {
    width: 100%;
    height: auto;
    border-radius: 30px 80px 30px 30px;
    display: block;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

/* dotted grid pattern (behind top-left) */
.sec1-dotted-bg {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#a0c4ff 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 0;
    border-radius: 20px;
}

/* potted plant decoration (bottom-left) */
.sec1-plant-icon {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #4CAF50;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 3;
}

/* floating stat card (bottom-right) */
.sec1-float-card {
    position: absolute;
    bottom: -25px;
    right: -15px;
    background: white;
    padding: 16px 24px;
    border-radius: 20px;
    box-shadow: 0 20px 35px -8px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 3;
    min-width: 110px;
    border-left: 4px solid #1E6DF2;
}

.sec1-float-card .sec1-big-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1E6DF2;
    line-height: 1;
}

.sec1-float-card p {
    font-size: 0.7rem;
    color: #5b6e8c;
    margin-top: 6px;
    line-height: 1.3;
}

/* video play overlay */
.sec1-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #1E6DF2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 4;
    transition: all 0.2s;
}

.sec1-play-overlay:hover {
    background: #0E5AD6;
    transform: translate(-50%, -50%) scale(1.05);
}

/* ========== STATISTICS BANNER (rounded dark navy) ========== */


.sec1-stats-banner {
    background: #031A4E;
    padding: 55px 40px;
}

.sec1-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.sec1-stat-item {
    text-align: center;
}

.sec1-stat-icon {
    font-size: 2rem;
    color: #4B74C0;
    margin-bottom: 12px;
    display: inline-block;
}

.sec1-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.sec1-stat-label {
    font-size: 0.85rem;
    color: #b0c4de;
    font-weight: 400;
}

/* ========== FULLY RESPONSIVE ========== */
@media (max-width: 1024px) {
    .sec1-headline {
        font-size: 2.3rem;
    }
    .sec1-stats-grid {
        gap: 20px;
    }
}

@media (max-width: 880px) {
    .sec1-split-grid {
        flex-direction: column;
        gap: 60px;
    }
    
    .sec1-left-col {
        text-align: center;
    }
    
    .sec1-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sec1-headline {
        font-size: 2rem;
    }
    
    .sec1-cta-btn {
        margin: 0 auto;
    }
    
    .sec1-float-card {
        bottom: -15px;
        right: 10px;
        padding: 12px 18px;
    }
    
    .sec1-plant-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        bottom: -15px;
        left: -10px;
    }
    
    .sec1-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 30px;
    }
    
    .sec1-stats-banner {
        padding: 40px 24px;
    }
    
    .sec1-stat-number {
        font-size: 1.7rem;
    }
}

@media (max-width: 560px) {
    .sec1-about-section {
        padding: 50px 0 40px;
    }
    
    .sec1-headline {
        font-size: 1.6rem;
    }
    
    .sec1-description {
        font-size: 0.9rem;
    }
    
    .sec1-cta-btn {
        padding: 12px 22px;
        font-size: 0.85rem;
    }
    
    .sec1-team-img {
        border-radius: 20px 50px 20px 20px;
    }
    
    .sec1-float-card {
        bottom: -10px;
        right: 5px;
        padding: 8px 14px;
        min-width: 90px;
    }
    
    .sec1-float-card .sec1-big-number {
        font-size: 1.5rem;
    }
    
    .sec1-float-card p {
        font-size: 0.6rem;
    }
    
    .sec1-plant-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: -10px;
        left: -8px;
    }
    
    .sec1-play-overlay {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .sec1-dotted-bg {
        width: 80px;
        height: 80px;
        top: -15px;
        left: -15px;
    }
    
    .sec1-stats-banner {
        padding: 30px 20px;
        
    }
    
    .sec1-stat-number {
        font-size: 1.4rem;
    }
    
    .sec1-stat-icon {
        font-size: 1.6rem;
    }
    
    .sec1-stat-label {
        font-size: 0.7rem;
    }
}

/* ========== SECTION 2: OUR STORY + MISSION/VISION/VALUES ========== */
.sec2-story-section {
    padding: 80px 0;
    background: #ffffff;
}

.sec2-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Top Sub-Section: Split Layout ===== */
.sec2-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 70px;
}

.sec2-left-col {
    flex: 1.2;
    min-width: 280px;
}

.sec2-right-col {
    flex: 1;
    min-width: 280px;
}

/* Left Column Typography */
.sec2-kicker {
    display: inline-block;
    background: #eef2ff;
    color: #1E6DF2;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.sec2-headline {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0A2540;
    margin-bottom: 28px;
}

.sec2-body-text {
    color: #4a5c72;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.sec2-mt {
    margin-top: 8px;
}

/* Right Column - Highlight Rows */
.sec2-highlight-row {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    align-items: flex-start;
}

.sec2-highlight-row:last-child {
    margin-bottom: 0;
}

.sec2-icon-circle {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sec2-icon-circle i {
    font-size: 1.6rem;
    color: #1E6DF2;
}

.sec2-highlight-content {
    flex: 1;
}

.sec2-highlight-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 8px;
}

.sec2-highlight-desc {
    font-size: 0.9rem;
    color: #5b6e8c;
    line-height: 1.5;
}

/* ===== Bottom Sub-Section: Core Pillars Grid ===== */
.sec2-pillars-wrapper {
    margin-top: 20px;
}

.sec2-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f0;
    overflow: hidden;
}

.sec2-pillar-card {
    padding: 40px 32px;
    background: white;
}

.sec2-with-border {
    border-left: 1px solid #eef2f0;
    border-right: 1px solid #eef2f0;
}

/* Pillar Icons */
.sec2-pillar-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.sec2-pillar-icon i {
    font-size: 2rem;
}

.sec2-mission-icon {
    background: #eef2ff;
}

.sec2-mission-icon i {
    color: #1E6DF2;
}

.sec2-vision-icon {
    background: #e8f5e9;
}

.sec2-vision-icon i {
    color: #4CAF50;
}

.sec2-values-icon {
    background: #f3e8ff;
}

.sec2-values-icon i {
    color: #9C27B0;
}

/* Pillar Typography */
.sec2-pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 16px;
}

.sec2-pillar-desc {
    font-size: 0.9rem;
    color: #5b6e8c;
    line-height: 1.6;
}

/* Values Checklist */
.sec2-values-list {
    list-style: none;
    margin-top: 8px;
}

.sec2-values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #2d3e50;
}

.sec2-values-list li i {
    color: #4CAF50;
    font-size: 0.9rem;
    width: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .sec2-headline {
        font-size: 2rem;
    }
    
    .sec2-pillar-card {
        padding: 30px 24px;
    }
    
    .sec2-pillar-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 880px) {
    .sec2-split-grid {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .sec2-left-col {
        text-align: center;
    }
    
    .sec2-headline {
        font-size: 1.8rem;
    }
    
    .sec2-pillars-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .sec2-with-border {
        border-left: none;
        border-right: none;
        border-top: 1px solid #eef2f0;
        border-bottom: 1px solid #eef2f0;
    }
    
    .sec2-pillar-card {
        text-align: center;
    }
    
    .sec2-pillar-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .sec2-values-list li {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .sec2-story-section {
        padding: 50px 0;
    }
    
    .sec2-headline {
        font-size: 1.5rem;
    }
    
    .sec2-body-text {
        font-size: 0.9rem;
    }
    
    .sec2-highlight-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .sec2-icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .sec2-icon-circle i {
        font-size: 1.3rem;
    }
    
    .sec2-highlight-title {
        font-size: 1.1rem;
    }
    
    .sec2-highlight-desc {
        font-size: 0.85rem;
    }
    
    .sec2-pillar-card {
        padding: 30px 20px;
    }
    
    .sec2-pillar-icon {
        width: 55px;
        height: 55px;
    }
    
    .sec2-pillar-icon i {
        font-size: 1.6rem;
    }
    
    .sec2-pillar-title {
        font-size: 1.2rem;
    }
    
    .sec2-pillar-desc {
        font-size: 0.85rem;
    }
    
    .sec2-values-list li {
        font-size: 0.85rem;
    }
}

/* ========== SECTION 3: OUR TEAM + FOOTER CTA BANNER ========== */
.sec3-team-section {
    padding: 80px 0 60px;
    background: #f9fafc;
}

.sec3-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header Styles ===== */
.sec3-header {
    text-align: center;
    margin-bottom: 56px;
}

.sec3-kicker {
    display: inline-block;
    background: #eef2ff;
    color: #1E6DF2;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.sec3-headline {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0A2540;
    margin-bottom: 16px;
}

.sec3-subtitle {
    font-size: 1rem;
    color: #5b6e8c;
    line-height: 1.6;
}

/* ===== Team Grid ===== */
.sec3-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Team Card */
.sec3-team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sec3-team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sec3-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #eef2f0;
}

.sec3-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sec3-team-card:hover .sec3-card-image img {
    transform: scale(1.05);
}

.sec3-card-content {
    padding: 24px 20px 28px;
    text-align: center;
}

.sec3-member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 6px;
}

.sec3-member-title {
    font-size: 0.85rem;
    color: #5b6e8c;
    margin-bottom: 18px;
}

/* Social Links */
.sec3-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.sec3-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #1E6DF2;
    border-radius: 8px;
    color: #1E6DF2;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.sec3-social-icon:hover {
    background: #1E6DF2;
    color: white;
    transform: translateY(-2px);
}

/* ===== Footer CTA Banner ===== */
.sec3-cta-wrapper {
    max-width: 1280px;
    margin: 0 24px 40px 24px;
    padding: 0 24px;
}

.sec3-cta-banner {
    background: #1E6DF2;
    border-radius: 28px;
    padding: 48px 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.sec3-cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sec3-cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec3-cta-icon i {
    font-size: 2rem;
    color: white;
}

.sec3-cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.sec3-cta-text p {
    font-size: 0.9rem;
    color: #cbd5e6;
}

.sec3-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #0A2540;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.sec3-cta-button:hover {
    background: #eef2ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sec3-cta-button i {
    transition: transform 0.2s;
}

.sec3-cta-button:hover i {
    transform: translateX(4px);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .sec3-team-grid {
        gap: 20px;
    }
    
    .sec3-headline {
        font-size: 1.9rem;
    }
}

@media (max-width: 992px) {
    .sec3-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .sec3-cta-banner {
        padding: 38px 32px;
    }
    
    .sec3-cta-left {
        gap: 18px;
    }
    
    .sec3-cta-text h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .sec3-team-section {
        padding: 60px 0 40px;
    }
    
    .sec3-headline {
        font-size: 1.6rem;
    }
    
    .sec3-subtitle {
        font-size: 0.9rem;
    }
    
    .sec3-subtitle br {
        display: none;
    }
    
    .sec3-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }
    
    .sec3-cta-left {
        flex-direction: column;
        text-align: center;
    }
    
    .sec3-cta-button {
        white-space: normal;
    }
}

@media (max-width: 560px) {
    .sec3-team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sec3-card-image {
        height: 260px;
    }
    
    .sec3-headline {
        font-size: 1.4rem;
    }
    
    .sec3-kicker {
        font-size: 0.7rem;
    }
    
    .sec3-cta-banner {
        padding: 32px 20px;
    }
    
    .sec3-cta-icon {
        width: 55px;
        height: 55px;
    }
    
    .sec3-cta-icon i {
        font-size: 1.5rem;
    }
    
    .sec3-cta-text h3 {
        font-size: 1.2rem;
    }
    
    .sec3-cta-text p {
        font-size: 0.85rem;
    }
    
    .sec3-cta-button {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}