/* ========================================================================
   FONDATION DLN — Professional Design System
   Fonts: Plus Jakarta Sans (body) + Playfair Display (headings)
   ======================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0B1D3A;
    --secondary-color: #C8A24E;
    --text-color: #4a5568;
    --text-light: #718096;
    --heading-color: #0B1D3A;
    --background-light: #f7f8fc;
    --background-warm: #faf9f7;
    --white: #ffffff;
    --dark-blue: #0B1D3A;
    --gold: #C8A24E;
    --gold-light: #d4b563;
    --gold-dark: #b8922e;
    --light-blue: #edf2f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== BASE ===================== */
body {
    padding-top: 70px;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.75;
    background-color: var(--background-light);
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    color: var(--heading-color);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

p { margin-bottom: 1rem; }

.text-gold { color: var(--gold) !important; }
.bg-gold { background-color: var(--gold) !important; }
.text-dark-blue { color: var(--dark-blue) !important; }
.bg-dark-blue { background-color: var(--dark-blue) !important; }
.bg-light-blue { background-color: var(--light-blue) !important; }
.ls-2 { letter-spacing: 3px; font-size: 0.75rem; font-weight: 700; }

::selection {
    background-color: var(--gold);
    color: var(--dark-blue);
}

/* ===================== NAVBAR ===================== */
.navbar {
    transition: background-color var(--transition), box-shadow var(--transition), padding var(--transition);
    padding: 12px 0;
    backdrop-filter: blur(10px);
}
.navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white) !important;
    letter-spacing: -0.02em;
}
.navbar-brand span { transition: color var(--transition); }
.navbar-brand img { margin-right: 10px; height: 42px; width: auto; border: 2px solid rgba(255,255,255,0.15); }

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0 6px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background-color var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    width: auto;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: center;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold); }

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    padding: 8px 0;
    backdrop-filter: blur(20px);
}
.navbar-scrolled .navbar-brand { color: var(--dark-blue) !important; }
.navbar-scrolled .navbar-brand img { border-color: var(--border-color); }
.navbar-scrolled .navbar-nav .nav-link { color: var(--dark-blue); }
.navbar-scrolled .navbar-nav .nav-link:hover,
.navbar-scrolled .navbar-nav .nav-link.active { color: var(--gold); }

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 10px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-scrolled .navbar-toggler { border-color: var(--border-color); }
.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2811, 29, 58, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================== BUTTONS ===================== */
.btn-primary {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all var(--transition);
}
.btn-primary:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 162, 78, 0.35);
}
.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark-blue);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all var(--transition);
}
.btn-gold:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 162, 78, 0.4);
}
.btn-outline-light {
    border-width: 2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    transition: all var(--transition);
    padding: 12px 28px;
    font-size: 0.9rem;
}
.btn-outline-light:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--dark-blue) !important;
}
.btn-outline-primary {
    border-color: var(--dark-blue);
    color: var(--dark-blue);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition);
}
.btn-outline-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-dark {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}
.btn-dark:hover {
    background-color: #061224;
    border-color: #061224;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 29, 58, 0.3);
}

/* ===================== HERO ===================== */
.hero-section {
    background: linear-gradient(160deg, rgba(11, 29, 58, 0.88), rgba(11, 29, 58, 0.75)), url('') no-repeat center center;
    background-size: cover;
    padding: 9rem 0 11rem;
    margin-top: -70px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.25) 100%);
    z-index: 0;
}
.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.08;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    color: var(--white);
    letter-spacing: -0.02em;
}
.hero-section p.lead {
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.8;
}
.hero-wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}
.hero-wave svg { display: block; width: 100%; height: 90px; }
.hero-wave path { fill: var(--background-light); }

/* ===================== PAGE HEADER ===================== */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #162d50 60%, #1a3a5c 100%);
    padding: 8rem 0 4rem;
    margin-top: -70px;
    min-height: 280px;
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.page-header .breadcrumb { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; }

/* ===================== SECTIONS ===================== */
.section-padding { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 50px; position: relative; }
.section-title h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 15px; }
.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px; height: 3px;
    background: var(--gold);
    bottom: -15px;
    left: calc(50% - 30px);
    border-radius: 2px;
}

/* Section subtitles */
h6.text-uppercase.text-gold {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 3px;
}

/* About Section */
.experience-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
    border-radius: var(--radius-md) !important;
}
.experience-badge span.h3 { font-size: 1.8rem; font-weight: 800; }
.icon-box {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    color: var(--dark-blue);
    background: var(--light-blue) !important;
    transition: all var(--transition);
}

/* Cards */
.hover-card {
    transition: transform var(--transition), box-shadow var(--transition);
    border-radius: var(--radius-lg);
    background: var(--white);
}
.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-icon {
    width: 72px; height: 72px;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-radius: var(--radius-lg) !important;
}

/* Impact / Parallax */
.parallax-section {
    background: linear-gradient(160deg, rgba(11, 29, 58, 0.92), rgba(11, 29, 58, 0.85)), url('https://images.unsplash.com/photo-1469571486292-0ba58a3f068b?q=80&w=2070&auto=format&fit=crop') no-repeat center fixed;
    background-size: cover;
}
.parallax-section .overlay-dark {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}
.counter-box {
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--transition);
}
.counter-box:hover {
    background: rgba(255, 255, 255, 0.1);
}
.counter-box .display-4 {
    font-weight: 800;
    color: var(--gold);
    font-size: 3rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.counter-box i.display-4 {
    font-size: 2.5rem;
    display: block;
}

/* Action Cards */
.action-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    background: var(--white);
}
.action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg) !important;
}
.action-card .card-img-wrapper { height: 220px; overflow: hidden; }
.action-card .card-img-top {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.action-card:hover .card-img-top { transform: scale(1.03); }
.action-card .badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.3px;
}
.action-card .card-title {
    font-size: 1.1rem;
    line-height: 1.4;
}
.action-card .card-text {
    font-size: 0.9rem;
    line-height: 1.7;
}
.action-card .btn-link {
    font-size: 0.875rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Gallery */
.gallery-item { height: 240px; cursor: pointer; border-radius: var(--radius-md) !important; }
.gallery-item img { transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(11, 29, 58, 0.2) 0%, rgba(11, 29, 58, 0.7) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: var(--radius-md);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Testimonials */
.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding-top: 50px !important;
    border: 1px solid var(--border-color);
}
.testimonial-card .quote-icon {
    width: 56px; height: 56px;
    font-size: 1.6rem;
    top: 0; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-md) !important;
}
.testimonial-card img {
    border: 3px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.testimonial-card p.fs-4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.7;
}
.testimonial-card h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--gold);
    width: 8px; height: 8px;
    border-radius: 50%;
    margin: 0 4px;
    opacity: 0.4;
    transition: opacity var(--transition), transform var(--transition);
}
.carousel-indicators .active { opacity: 1; transform: scale(1.3); }

/* Founder */
.founder-img-wrapper { position: relative; display: inline-block; }
.founder-img-wrapper img { z-index: 1; position: relative; border-color: var(--white) !important; }
.founder-decoration {
    position: absolute;
    width: 100%; height: 100%;
    border: 4px solid var(--gold);
    border-radius: 50%;
    top: 12px; left: 12px;
    z-index: 0;
    opacity: 0.6;
}

/* Founder blockquote */
#fondateur figure {
    background: var(--background-warm) !important;
    border-left-color: var(--gold) !important;
    border-left-width: 4px !important;
}
#fondateur .blockquote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Donation */
#don {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%) !important;
}
#don .circle-decoration {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    opacity: 1;
}
#don .circle-1 { width: 350px; height: 350px; top: -80px; left: -80px; }
#don .circle-2 { width: 450px; height: 450px; bottom: -120px; right: -120px; }
#don h2 {
    font-size: 2.6rem;
    color: var(--dark-blue);
}
#don p.lead {
    color: rgba(11, 29, 58, 0.75);
}

.hover-lift { transition: transform var(--transition), box-shadow var(--transition); }
.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Partners */
.grayscale-logos i { transition: color var(--transition); }
.grayscale-logos .col-6:hover i,
.grayscale-logos .col-6:hover h5 { color: var(--dark-blue) !important; }
.grayscale-logos .col-6 .p-3 {
    border-radius: var(--radius-md);
    transition: background var(--transition);
}
.grayscale-logos .col-6:hover .p-3 {
    background: var(--white);
}

/* Contact Form */
#contact .form-control,
.form-floating .form-control {
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}
#contact .form-control:focus,
.form-floating .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 162, 78, 0.15);
}
.form-floating label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact card */
#contact .bg-white.shadow-lg {
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-xl) !important;
}

/* Article Content */
.article-content { font-size: 1.05rem; line-height: 1.9; color: #2d3748; }
.article-content p { margin-bottom: 1.3rem; }

/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding-top: 60px;
    padding-bottom: 24px;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
footer h4, footer h5 {
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}
footer h4 { font-size: 1.2rem; }
.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition), padding-left var(--transition);
    font-size: 0.9rem;
}
.footer-links li a:hover { color: var(--gold); padding-left: 4px; }
.social-links a {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition), transform var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}
footer .input-group .form-control {
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.9rem;
}
footer .input-group .form-control::placeholder { color: rgba(255,255,255,0.35); }
footer .input-group .form-control:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    box-shadow: none;
}
footer .input-group .btn {
    border-top-right-radius: var(--radius-sm);
    border-bottom-right-radius: var(--radius-sm);
}
footer hr { opacity: 0.1; }
footer .text-gold { color: var(--gold) !important; }
footer p.text-white-50 { font-size: 0.9rem; line-height: 1.7; }

/* Back to Top */
.back-to-top {
    position: fixed;
    visibility: hidden; opacity: 0;
    right: 20px; bottom: 20px;
    z-index: 996;
    background: var(--dark-blue);
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.1);
}
.back-to-top i { font-size: 22px; color: var(--gold); line-height: 0; }
.back-to-top:hover {
    background: var(--gold);
    color: var(--dark-blue);
    transform: translateY(-2px);
}
.back-to-top:hover i { color: var(--dark-blue); }
.back-to-top.active { visibility: visible; opacity: 1; }

/* Animations — minimal, no infinite loops */
.pulse-anim {
    /* Removed infinite pulse — just a subtle shadow */
    box-shadow: 0 2px 10px rgba(200, 162, 78, 0.3);
}
.pulse-anim:hover {
    box-shadow: 0 4px 18px rgba(200, 162, 78, 0.5);
}

/* Alert Messages */
.alert-floating {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    min-width: 320px;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.35s ease;
}
@keyframes slideIn {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===================== UTILITY ENHANCEMENTS ===================== */
.lead { font-weight: 400; font-size: 1.1rem; color: var(--text-light); }
.text-muted { color: var(--text-light) !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.rounded-4 { border-radius: var(--radius-xl) !important; }
.rounded-3 { border-radius: var(--radius-md) !important; }
.bg-light { background-color: var(--background-warm) !important; }

/* Better badge colors */
.badge.bg-primary { background-color: var(--dark-blue) !important; }
.badge.bg-success { background-color: #16a34a !important; }
.badge.bg-warning { background-color: var(--gold) !important; color: var(--dark-blue) !important; }
.badge.bg-info { background-color: #0891b2 !important; }
.badge.bg-danger { background-color: #dc2626 !important; }

/* Separator decoration for section headers */
.display-5 { font-weight: 700; }
.fw-bold { font-weight: 700 !important; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--dark-blue);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(255,255,255,0.05);
    }
    .navbar-scrolled .navbar-collapse {
        background-color: var(--white);
        border-color: var(--border-color);
    }
    .navbar-nav { text-align: center; }
    .navbar-nav .nav-item { margin: 3px 0; }
    .hero-section h1 { font-size: 2.8rem; }
    .hero-section p.lead { font-size: 1.05rem; }
    .section-padding { padding: 70px 0; }
    .section-title h2 { font-size: 2rem; }
    .founder-img-wrapper { margin-bottom: 30px; }
    .page-header { padding: 7rem 0 3rem; min-height: 220px; }
}

@media (max-width: 767px) {
    .hero-section { padding: 7rem 0 9rem; }
    .hero-section h1 { font-size: 2.2rem; }
    .hero-section p.lead { font-size: 0.95rem; padding: 0 10px; }
    .display-4 { font-size: 2rem; }
    .display-5 { font-size: 1.7rem; }
    .section-padding { padding: 60px 0; }
    .testimonial-card { padding: 25px 18px !important; }
    .testimonial-card .quote-icon { width: 46px; height: 46px; font-size: 1.3rem; }
    .testimonial-card p.fs-4 { font-size: 1.05rem !important; }
    .founder-decoration { top: 8px; left: 8px; border-width: 3px; }
    .gallery-item { height: 180px; }
    .navbar-brand { font-size: 1.15rem; }
    .navbar-brand img { height: 36px; }
    .page-header { padding: 6rem 0 2.5rem; min-height: 200px; }
    .page-header h1 { font-size: 1.9rem; }
    #don h2 { font-size: 2rem; }
    .counter-box .display-4 { font-size: 2.4rem; }
}
