/* --- DESIGN TOKEN VARIABLES --- */
:root {
    --brand-red: #F12B24;          
    --brand-red-hover: #D01E18;    
    --pure-white: #FFFFFF;
    
    /* Harmonizing Blend Colors */
    --bg-warm-tint: #FFF6F6;       
    --slate-charcoal: #2A2F35;     
    --text-muted: #5C6470;         
    --border-light: #F0E2E2;       
    
    /* Typography & Effects */
    --font-stack: 'Plus Jakarta Sans', sans-serif;
    --card-shadow: 0 12px 32px rgba(42, 47, 53, 0.04);
    --hover-shadow: 0 20px 40px rgba(241, 43, 36, 0.08);
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-flip: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- SYSTEM RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    color: var(--slate-charcoal);
    background-color: var(--pure-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px; 
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    border: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-sizing: border-box;
}

.btn-primary {
    background-color: var(--brand-red);
    color: var(--pure-white);
    box-shadow: 0 8px 20px rgba(241, 43, 36, 0.2);
}

.btn-primary:hover {
    background-color: var(--brand-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(241, 43, 36, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--slate-charcoal);
    border: 2px solid var(--slate-charcoal);
}

.btn-secondary:hover {
    background-color: var(--slate-charcoal);
    color: var(--pure-white);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--pure-white);
    color: var(--brand-red);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.btn-white:hover {
    background-color: var(--bg-warm-tint);
    color: var(--brand-red-hover);
}

.btn-full-width {
    width: 100%;
}

/* --- HERO SOCIAL MEDIA ACTIONS --- */
.hero-social-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--pure-white);
    transition: var(--transition-smooth);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.social-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.social-icon-box svg {
    width: 100%;
    height: 100%;
}

.bs-fb { background-color: #1877F2; }
.bs-fb:hover { background-color: #145DBF; transform: translateY(-3px); }

.bs-ig { background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%); }
.bs-ig:hover { filter: brightness(1.1); transform: translateY(-3px); }

.bs-tt { background-color: #000000; border: 1px solid rgba(255,255,255,0.2); }
.bs-tt:hover { background-color: #25292E; transform: translateY(-3px); }

/* --- STICKY NAVIGATION BAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    box-sizing: border-box;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 46px;
    width: 46px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--brand-red);
}

.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--brand-red);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links .nav-item {
    text-decoration: none;
    color: var(--slate-charcoal);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 12px;
    padding-bottom: 6px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-links .nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-red);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-links .nav-item:hover::after, 
.nav-links .nav-item.active::after {
    width: 100%;
}

.nav-links .nav-item:hover, 
.nav-links .nav-item.active {
    color: var(--brand-red);
}

.btn-nav {
    padding: 10px 24px;
}

.mobile-nav-cta {
    display: none; 
}

/* --- HAMBURGER BUTTON STRUCTURE --- */
.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--slate-charcoal);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.hamburger-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--brand-red);
}

.hamburger-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--brand-red);
}

/* --- HERO AREA --- */
.hero-outer-wrap {
    padding: 130px 0 60px 0;
    background-color: var(--pure-white);
}

.hero-canvas-panel {
    background: linear-gradient(135deg, rgba(30, 35, 45, 0.98) 30%, rgba(184, 24, 18, 0.9) 100%);
    border-radius: 40px;
    padding: 80px 60px;
    box-shadow: 0 30px 70px rgba(42, 47, 53, 0.15);
    overflow: hidden;
    box-sizing: border-box;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--pure-white);
}

.hero-content p {
    font-size: 1.15rem;
    color: #E2E8F0;
    margin-bottom: 32px;
    max-width: 540px;
    opacity: 0.9;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 420px;
    border-radius: 28px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    aspect-ratio: 3 / 4;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.image-accent-glow {
    position: absolute;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--brand-red);
    top: 16px;
    left: 16px;
    border-radius: 28px;
    z-index: 1;
    opacity: 0.15;
}

.text-gradient {
    color: #FF8A84;
}

/* --- GENERAL SECTION HEADERS --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
    box-sizing: border-box;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.header-line {
    width: 60px;
    height: 4px;
    background-color: var(--brand-red);
    margin: 0 auto 16px auto;
    border-radius: 2px;
}

.section-header .tagline {
    color: var(--brand-red);
    font-weight: 700;
    font-size: 1.1rem;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 90px 0 45px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 1.1fr;
    gap: 28px;
    margin-bottom: 56px;
}

.about-card {
    background-color: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(241, 43, 36, 0.2);
}

.about-card h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
    font-weight: 700;
}

.card-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.core-info {
    background-color: var(--bg-warm-tint);
    border: 1px solid rgba(241, 43, 36, 0.1);
}

.core-info h3 {
    color: var(--brand-red);
    font-size: 1.6rem;
}

.core-info p {
    margin-bottom: 14px;
}

.what-we-do-panel {
    margin-top: 60px;
    background-color: var(--pure-white);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    border-left: 6px solid var(--brand-red);
    box-shadow: var(--card-shadow);
    box-sizing: border-box;
}

.what-we-do-panel h3 {
    margin-bottom: 28px;
    font-size: 1.7rem;
    font-weight: 800;
}

.bullet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 1.05rem;
}

.check-icon {
    color: var(--brand-red);
    background-color: #FFF1F0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
}

/* --- MEDICAL FACTS SECTION --- */
.education-section {
    padding: 45px 0 90px 0;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.edu-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--slate-charcoal);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.edu-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--brand-red);
}

.edu-card:hover {
    border-top-color: var(--brand-red);
    transform: translateY(-4px);
}

/* --- PROGRAMS SECTION --- */
.programs-outer-wrap {
    padding: 60px 0;
    background-color: var(--pure-white);
}

.programs-canvas-panel {
    background: linear-gradient(135deg, rgba(18, 20, 24, 0.95) 25%, rgba(184, 24, 18, 0.86) 100%), 
                url('images/4.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    border-radius: 40px; 
    padding: 90px 48px;
    box-shadow: 0 24px 60px rgba(42, 47, 53, 0.08);
    overflow: hidden;
    box-sizing: border-box;
}

.inverse-header h2 {
    color: var(--pure-white) !important;
}
.inverse-header p {
    color: #E2E8F0 !important;
    opacity: 0.9;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.impact-card-style {
    background-color: rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 28px !important; 
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    color: var(--pure-white) !important;
    padding: 36px !important;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.impact-card-style h3 {
    color: var(--pure-white) !important;
    font-weight: 700;
}

.impact-card-style p {
    color: #E2E8F0 !important;
    font-size: 0.95rem;
}

.impact-card-style:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 24px 45px rgba(241, 43, 36, 0.2) !important;
}

.p-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* --- EVENTS VIDEO SECTION --- */
.events-section {
    padding: 90px 0;
    background-color: var(--bg-warm-tint);
}

.events-video-card {
    background-color: var(--pure-white);
    border-radius: 24px;
    padding: 36px;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: 0 16px 40px rgba(42, 47, 53, 0.06);
    border: 1px solid var(--border-light);
    border-top: 5px solid var(--brand-red);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background-color: #000000;
    margin-bottom: 28px;
}

.video-container video,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    border-radius: 16px;
}

.video-details {
    text-align: center;
}

.video-details h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--slate-charcoal);
}

.video-details p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.placeholder-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- GET INVOLVED & DONATION LAYOUT --- */
.action-section {
    padding: 90px 0;
}

.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
}

.action-card {
    background-color: var(--pure-white);
    padding: 56px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.card-hover-effect:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

.action-card h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    font-weight: 800;
}

.action-list {
    list-style: none;
    margin-top: 24px;
}

.action-list li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    font-size: 1.05rem;
}

.action-list li::before {
    content: "•";
    color: var(--brand-red);
    font-size: 1.6rem;
    position: absolute;
    left: 0;
    top: -4px;
}

/* --- FLIP-CARD INTERFACE --- */
.flip-card-perspective-wrapper {
    perspective: 1500px;
    width: 100%;
    display: flex;
    box-sizing: border-box;
}

.flip-card-inner-engine {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    transition: var(--transition-flip);
}

.flip-card-inner-engine.flipped {
    transform: rotateY(180deg);
}

.flip-card-face {
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 24px;
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.flip-card-front {
    background: linear-gradient(135deg, var(--brand-red) 0%, #B81812 100%);
    color: var(--pure-white);
    z-index: 2;
    transform: rotateY(0deg);
}

.flip-card-back {
    background: linear-gradient(135deg, #0A3A40 0%, #031B1E 100%);
    color: var(--pure-white);
    transform: rotateY(180deg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.flip-card-inner-engine.flipped .flip-card-front {
    visibility: hidden;
    transition: visibility 0s 0.35s;
}
.flip-card-inner-engine:not(.flipped) .flip-card-back {
    visibility: hidden;
    transition: visibility 0s 0.35s;
}

.flip-card-back .bank-details-box {
    padding: 16px;
}
.flip-card-back .bank-row {
    font-size: 0.9rem !important;
    margin-bottom: 4px !important;
}

.flip-card-face h2 {
    margin-bottom: 16px;
    font-size: 2.2rem;
    font-weight: 800;
}

.flip-card-face p {
    margin-bottom: 24px;
    opacity: 0.95;
    font-size: 1.05rem;
}

.momo-details-box, .bank-details-box {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
    box-sizing: border-box;
}

.momo-badge {
    display: inline-block;
    background-color: #FF6B00;
    color: var(--pure-white); 
    font-weight: 800;
    font-size: 0.75rem;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bank-badge {
    display: inline-block;
    background-color: #00A3A1; 
    color: var(--pure-white);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.momo-row, .bank-row {
    font-size: 0.98rem !important;
    margin-bottom: 8px !important;
}

.rotate-action-trigger-area {
    margin-bottom: 20px;
}

.donation-note {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    opacity: 0.75;
    text-align: center;
    font-style: italic;
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 90px 0;
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.contact-details-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.channels-stack {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px; 
}

.channel-row {
    display: flex;
    align-items: center; 
    gap: 20px;
}

.channel-icon {
    font-size: 2rem;
    background-color: var(--pure-white);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--card-shadow);
    flex-shrink: 0;
}

.channel-row a {
    color: var(--brand-red);
    text-decoration: none;
    font-weight: 700;
    word-break: break-all; 
}

.form-card {
    background-color: var(--pure-white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    box-sizing: border-box;
}

.form-row {
    margin-bottom: 24px;
}

.form-row label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-row input, .form-row textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #EAEFF5;
    border-radius: 12px;
    font-family: var(--font-stack);
    font-size: 1rem;
    background-color: #FAFCFE;
    color: var(--slate-charcoal);
    outline: none;
    transition: var(--transition-smooth);
}

.form-row input:focus, .form-row textarea:focus {
    border-color: var(--brand-red);
    background-color: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(241, 43, 36, 0.05);
}

/* --- FOOTER --- */
.footer-bar {
    background-color: var(--slate-charcoal);
    color: #A3AAB5;
    padding: 48px 0;
    text-align: center;
    border-top: 6px solid var(--brand-red);
}

/* --- MEDIA RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1200px) {
    .hero-canvas-panel { padding: 60px 40px; }
    .hero-content h1 { font-size: 3rem; }
    .about-grid { grid-template-columns: 1.5fr 1fr; }
    .vision { grid-column: span 1; }
    .mission { grid-column: span 2; }
}

@media (max-width: 1024px) {
    .hero-container, .action-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .education-grid {
        grid-template-columns: 1fr;
    }
    .flip-card-perspective-wrapper { perspective: none; }
    .flip-card-inner-engine {
        transform-style: flat;
        transform: none !important;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .flip-card-face {
        position: static !important;
        transform: none !important;
        height: auto !important;
        visibility: visible !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .flip-card-back { background: linear-gradient(135deg, #0A3A40 0%, #031B1E 100%); }
    .rotate-action-trigger-area { display: none; }

    .hero-canvas-panel { text-align: center; padding: 50px 30px; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { margin: 0 auto 32px auto; }
    .hero-social-row { justify-content: center; }
    .hero-img, .image-accent-glow { max-width: 340px; }
    .about-grid { grid-template-columns: 1fr; }
    .mission { grid-column: span 1; }
    .programs-canvas-panel { padding: 60px 30px; }
}

@media (max-width: 768px) {
    .hamburger-toggle { display: flex; }
    .desktop-nav-cta { display: none; }
    
    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: #FFFFFF;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        gap: 28px;
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        border-top: 1px solid var(--border-light);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links .nav-item {
        margin: 0;
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .nav-links .nav-item::after { display: none; }
    .mobile-nav-cta {
        display: inline-block;
        width: 100%;
        max-width: 280px;
        margin-top: 16px;
    }
    
    .hero-social-row { gap: 12px; }
    .btn-social {
        padding: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
    }
    .social-text { display: none; }
    .social-icon-box { width: 22px; height: 22px; }

    .hero-content h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 2rem; }
    .bullet-grid { grid-template-columns: 1fr; }
    
    .events-video-card { padding: 20px; }
    .placeholder-actions { flex-direction: column; width: 100%; }
    .placeholder-actions .btn { width: 100%; }
    
    .action-card, .flip-card-face, .form-card { padding: 36px 20px; }
}

@media (max-width: 480px) {
    .hero-canvas-panel, .programs-canvas-panel { padding: 40px 20px; border-radius: 24px; }
    .hero-img, .image-accent-glow { max-width: 100%; border-radius: 20px; }
    .hero-content h1 { font-size: 1.8rem; }
    .contact-details-box h2 { font-size: 1.8rem; }
    .action-card, .flip-card-face, .form-card { padding: 32px 16px; }
    .flip-card-face h2 { font-size: 1.8rem; }
}