:root {
    --primary: #176b4d;
    --primary2: #0f5138;
    --soft: #eef8f3;
    --accent: #e6a52f;
    --text: #18221d;
    --muted: #68736d;
    --bg: #f7f9f7;
    --white: #fff;
    --border: #e4ebe6;
    --shadow: 0 12px 35px rgba(20, 50, 35, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    font-weight: 800;
    color: var(--primary);
    font-size: 20px;
}

.brand small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

nav a {
    font-size: 14px;
    color: #4c5851;
}

nav a:hover {
    color: var(--primary);
}

.lang {
    border: 0;
    background: var(--primary);
    color: #fff;
    padding: 9px 15px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.hero {
    background: linear-gradient(135deg, #0e5138, #1b7655);
    color: #fff;
    padding: 40px 0 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 45px;
    align-items: center;
}

.eyebrow {
    color: #f5c65b;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.hero h1 {
    font-size: clamp(38px, 8vw, 100px);
    line-height: 1.05;
    margin: 12px 0 20px;
}

.hero p {
    font-size: 18px;
    color: #e1eee8;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 11px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-primary {
    background: #fff;
    color: var(--primary);
}

.btn-outline {
    color: #fff;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 25px;
    border-radius: 20px;
}

.hero-card .big {
    font-size: 44px;
    font-weight: 800;
}

.hero-card p {
    font-size: 14px;
    margin: 0;
    color: #dbe9e3;
}

section {
    padding: 72px 0;
}

.section-head {
    margin-bottom: 30px;
}

.section-head h2 {
    font-size: 34px;
    margin: 0 0 8px;
}

.section-head p {
    color: var(--muted);
    margin: 0;
}

.hi {
    display: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.card h3 {
    margin: 10px 0 8px;
    font-size: 20px;
}

.card p {
    color: var(--muted);
    margin: 0 0 16px;
}

.icon {
    font-size: 32px;
}

.tag {
    display: inline-block;
    background: var(--soft);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 9px;
    border-radius: 20px;
}

.map {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
}

.about {
    background: #fff;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.stat {
    background: var(--soft);
    padding: 20px;
    border-radius: 15px;
}

.stat strong {
    font-size: 27px;
    display: block;
    color: var(--primary);
}

.stat span {
    color: var(--muted);
    font-size: 13px;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.feature .card {
    padding: 32px;
}

.feature ul {
    padding-left: 20px;
    color: var(--muted);
}

.notice {
    background: #fff7e7;
    border: 1px solid #f2d79d;
    padding: 15px;
    border-radius: 12px;
    color: #73520d;
    font-size: 14px;
}

.table-wrap {
    overflow: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.table th,
.table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.table th {
    background: var(--soft);
    color: var(--primary);
    font-size: 13px;
}

.table td {
    font-size: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact b {
    display: block;
}

.contact span {
    color: var(--muted);
    font-size: 14px;
}

footer {
    background: #10251d;
    color: #d8e5df;
    padding: 45px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 22px;
    grid-auto-flow: column;
}

.footer-title {
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    color: #b8c9c1;
    font-size: 14px;
    margin: 5px 0;
}

.visitor-counter {
    padding-left: 18px;
    border-left: 2px solid #f5c65b;
}

.visitor-counter strong {
    display: block;
    color: #f5c65b;
    font-size: 28px;
    line-height: 1.2;
}

.visitor-counter span {
    color: #b8c9c1;
    font-size: 13px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 30px;
    padding-top: 18px;
    font-size: 13px;
    color: #9eb0a8;
}

.place-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 14px;
    background: #eaf1ed;
}

.hero-image {
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #163f31;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.25));
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    cursor: pointer;
    z-index: 3;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.55);
}

.slider-btn.prev {
    left: 14px;
}

.slider-btn.next {
    right: 14px;
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
    z-index: 4;
}

.dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.dot.active {
    width: 22px;
    border-radius: 10px;
    background: #fff;
}

.official-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 8px;
}

.section-banner {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    margin: 5px 0 28px;
}

.hero-bg-slider {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #123f2d;
    padding: 0;
}

.hero-bg-slides,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(4, 30, 20, 0.82), rgba(4, 30, 20, 0.58), rgba(4, 30, 20, 0.38));
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-stats>div {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 13px 18px;
    border-radius: 13px;
}

.hero-stats strong {
    display: block;
    color: #fff;
    font-size: 30px;
}

.hero-stats span {
    font-size: 12px;
    color: #dbe9e3;
}

.bg-slider-btn {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    cursor: pointer;
}

.bg-slider-btn i {
    font-size: 20px;
}

.bg-slider-btn:hover {
    background: rgba(0, 0, 0, 0.5);
}

.bg-prev {
    left: 25px;
}

.bg-next {
    right: 25px;
}

.bg-slider-dots {
    position: absolute;
    z-index: 5;
    bottom: 25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.bg-dot {
    width: 9px;
    height: 9px;
    border: 0;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.bg-dot.active {
    width: 25px;
    border-radius: 10px;
    background: #fff;
}

/* ─── Container for sub-pages ─── */


/* ─── Sub-page Layout ─── */
.subpage-main {
    padding: 60px 0 80px;
}

.subpage-title {
    margin-top: 0px;
    margin-bottom: 23px;
}

.subpage-contact-grid {
    margin-top: 24px;
}

.subpage-note {
    margin-top: 24px;
}

/* ─── Hero Text Max Width ─── */
.hero-text-wrap {
    max-width: 760px;
}

/* ─── Active Nav Link ─── */
nav a.active {
    color: var(--primary);
    font-weight: 700;
}

/* ─── Page Hero ─── */
.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a3d2b 0%, #145a3e 40%, #1b7655 100%);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('img/slide1.avif') center/cover no-repeat;
    opacity: 0.18;
}

.page-hero::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s;
    display: flex;
    gap: 5px;
}

.hero-breadcrumb a:hover {
    color: #f5c65b;
}

.hero-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.35);
}

.page-hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.1;
    max-width: 700px;
}

.page-hero .subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 600px;
    line-height: 1.7;
    margin: 0;
}

.hero-decoration {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-decoration::before {
    content: "";
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ─── About Section Styles ─── */
.about-section {
    padding: 72px 0;
}

.about-section.alt-bg {
    background: #fff;
}

.about-section.no-pad-top {
    padding-top: 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.section-header-center-sm {
    text-align: center;
    margin-bottom: 42px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(23, 107, 77, 0.1), rgba(23, 107, 77, 0.05));
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 12px;
    line-height: 1.2;
}

.section-title.centered {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    color: var(--muted);
    font-size: 16px;
    max-width: 650px;
    line-height: 1.7;
    margin: 0 0 36px;
}

.section-desc.centered {
    margin-left: auto;
    margin-right: auto;
}

/* ─── Mission/Vision/Values Cards ─── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 8px 30px rgba(20, 50, 35, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(20, 50, 35, 0.12);
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.pillar-card:nth-child(1)::before {
    background: linear-gradient(90deg, #176b4d, #22a06b);
}

.pillar-card:nth-child(2)::before {
    background: linear-gradient(90deg, #e6a52f, #f0c960);
}

.pillar-card:nth-child(3)::before {
    background: linear-gradient(90deg, #2d7fc4, #5ca8e6);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.pillar-card:nth-child(1) .pillar-icon {
    background: linear-gradient(135deg, #e8f5ef, #d0ede0);
    color: #176b4d;
}

.pillar-card:nth-child(2) .pillar-icon {
    background: linear-gradient(135deg, #fef5e0, #fdecc4);
    color: #c08a1e;
}

.pillar-card:nth-child(3) .pillar-icon {
    background: linear-gradient(135deg, #e0eff9, #c4dff2);
    color: #2d7fc4;
}

.pillar-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--text);
}

.pillar-card p {
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
}

/* ─── Story / Content ─── */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.story-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(20, 50, 35, 0.12);
}

.story-image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.story-image-wrap .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 40, 25, 0.45));
}

.story-image-wrap .image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-content h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    margin: 0 0 16px;
    color: var(--text);
    line-height: 1.25;
}

.story-content p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0 0 16px;
    font-size: 15px;
}

.story-content .highlight-box {
    background: linear-gradient(135deg, var(--soft), #e8f5ef);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 14px 14px 0;
    margin-top: 24px;
}

.story-content .highlight-box p {
    color: var(--primary);
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

/* ─── Stats Bar ─── */
.stats-bar {
    background: linear-gradient(135deg, #0e5138, #1b7655);
    border-radius: 24px;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.stats-bar::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item .stat-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1.1;
}

.stat-item .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    display: block;
}

/* ─── Values List ─── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(20, 50, 35, 0.08);
}

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    color: var(--primary);
}

.value-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--text);
}

.value-item p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ─── CTA Banner ─── */
.cta-banner {
    background: linear-gradient(135deg, #0e5138, #1a7050);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(245, 198, 91, 0.08);
}

.cta-banner::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    margin: 0 0 28px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.cta-btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ─── Full Footer ─── */
.full-footer {
    background: #10251d;
    color: #d8e5df;
    padding: 45px 0;
}

.full-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 22px;
}

.full-footer .footer-title {
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
}

.full-footer .footer-links a {
    display: block;
    color: #b8c9c1;
    font-size: 14px;
    margin: 5px 0;
    transition: color 0.3s;
}

.full-footer .footer-links a:hover {
    color: #f5c65b;
}

.full-footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 30px;
    padding-top: 18px;
    font-size: 13px;
    color: #9eb0a8;
}

/* ─── Responsive ─── */
@media (max-width: 850px) {
    nav {
        display: none;
    }

    .hero-grid,
    .feature,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: row;
    }

    .hero {
        padding-top: 55px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .full-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-decoration {
        display: none;
    }

    .page-hero {
        min-height: 340px;
    }
}

@media (max-width: 700px) {
    .hero-bg-slider {
        min-height: 680px;
    }

    .hero-overlay {
        background: rgba(4, 30, 20, 0.68);
    }

    .bg-prev {
        left: 12px;
    }

    .bg-next {
        right: 12px;
    }

    .hero-stats {
        gap: 8px;
    }

    .hero-stats>div {
        padding: 10px 12px;
    }
}

@media (max-width: 560px) {

    .grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-head h2 {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .full-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 40px 24px;
    }

    .page-hero {
        min-height: 300px;
    }
}