/* Font Imports */
@font-face {
    font-family: "Sink";
    src: url('fonts/Sink.otf') format("opentype"),
    url('fonts/Sink.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro');

/* If Sink font is available from a specific source, add it here */
/* For now using a fallback that can be replaced */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

:root {
    /* Hero Colours */
    --primary-color: #074226;
    --primary-light: #44a352;

    /* Supporting Colours */
    --secondary-color: #f06543;
    --accent-color: #58355e;

    /* Base Colours */
    --bg-white: #efe6dd;
    --text-dark: #130303;
    --text-light: #130303;
    --bg-light: #efe6dd;

    /* Font Families */
    --font-headline: 'Sink', Arial, sans-serif;
    --font-subheadline: 'Neue Haas Grotesk Display Pro', Arial, sans-serif;
    --font-body: 'Neue Haas Grotesk Display Pro', Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: normal;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-family: var(--font-subheadline);
    font-weight: bold;
    font-size: 2.5rem;
}

h3 {
    font-family: var(--font-subheadline);
    font-weight: bold;
    font-size: 1.5rem;
}

h4, h5, h6 {
    font-family: var(--font-subheadline);
    font-weight: bold;
}

/* ============================================
   HEADER STYLES - Desktop & Mobile Responsive
   ============================================ */

header {
    background: var(--bg-white);
    box-shadow: 0 2px 5px rgba(19,3,3,0.1);
    position: relative;
    z-index: 1000;
}

/* Header Top Section - Contact | Logo | Social */
.header-top {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(7, 66, 38, 0.1);
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-flex {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

/* Contact Area - Left */
.contact-area {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-link {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.contact-link:hover {
    color: var(--primary-light);
}

/* Logo Area - Center */
.logo-area {
    text-align: center;
}

.logo-link {
    display: inline-block;
}

.site-logo {
    max-height: 80px;
    width: auto;
}

/* Social Area - Right */
.social-area {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-icon {
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Main Navigation */
.main-navigation {
    background: var(--primary-color);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.nav-center {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--bg-white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    background: var(--primary-light);
    color: var(--bg-white);
}

/* Hamburger Menu Button - Hidden on Desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.5rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Mobile Header Bar - Hidden on Desktop by default */
.mobile-header-bar {
    display: none;
}

/* Mobile Menu Overlay - Hidden by default */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: 9999;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--bg-white);
    cursor: pointer;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 1rem;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-list li {
    margin: 0.5rem 0;
}

.mobile-nav-list a {
    color: var(--bg-white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    display: block;
    transition: color 0.3s;
}

.mobile-nav-list a:hover {
    color: var(--primary-light);
}

.mobile-contact-info {
    margin-top: 2rem;
    text-align: center;
}

.mobile-contact-info a {
    display: block;
    color: var(--bg-white);
    text-decoration: none;
    font-family: var(--font-body);
    margin: 0.5rem 0;
    font-size: 1rem;
}

.mobile-social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.mobile-social a {
    font-size: 2rem;
    text-decoration: none;
    color: var(--bg-white);
}

/* ============================================
   TABLET STYLES (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .nav-link {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   MOBILE STYLES (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Hide desktop header top section */
    .header-top {
        display: none;
    }

    /* Show mobile header bar */
    .mobile-header-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 1.5rem;
        background: var(--bg-white);
        position: relative;
    }

    .mobile-header-bar .logo-link {
        display: flex;
        align-items: center;
        line-height: 0;
    }

    .mobile-header-bar .site-logo {
        max-height: 50px;
        display: block;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Hide desktop navigation */
    .main-navigation {
        display: none;
    }
}

/* Legacy nav styles (for fallback) */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.5rem;
}

.hero {
    background: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7));
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7));
    z-index: 1;
}

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

.hero h1 {
    font-family: var(--font-headline);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-family: var(--font-body);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-subheadline);
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19,3,3,0.3);
    background: #d4502d;
}

.stats-bar {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 3rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 0;
}

.stat-icon:empty {
    display: none;
}

.stat-item h3 {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

.stat-item p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.welcome-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.welcome-photo {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    overflow: hidden;
}

.welcome-content h2 {
    font-family: var(--font-headline);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.welcome-content h3 {
    font-family: var(--font-subheadline);
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.visitor-types {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--font-headline);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.visitor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.visitor-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(19,3,3,0.1);
    transition: transform 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid rgba(7, 66, 38, 0.1);
}

.visitor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(19,3,3,0.15);
}

.visitor-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--bg-white);
}

.visitor-content {
    padding: 1.5rem;
    background: var(--bg-white);
}

.visitor-content h3 {
    font-family: var(--font-subheadline);
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.visitor-content p {
    font-family: var(--font-body);
}

.activities-preview {
    background: var(--bg-white);
    padding: 4rem 2rem;
}

.activities-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.activity-card {
    height: 250px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-family: var(--font-subheadline);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    padding: 1rem;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-light);
    opacity: 0;
    transition: opacity 0.3s;
}

.activity-card:hover::before {
    opacity: 0.3;
}

.activity-card span {
    position: relative;
    z-index: 1;
}

.page-header {
    background: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7)), url('images/header-default.jpg');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.page-header.schools-header {
    background-image: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7)), url('images/header-schools.jpg');
}

.page-header.scouts-header {
    background-image: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7)), url('images/header-scouts.jpg');
}

.page-header.youth-header {
    background-image: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7)), url('images/header-youth.jpg');
}

.page-header.corporate-header {
    background-image: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7)), url('images/header-corporate.jpg');
}

.page-header.activities-header {
    background-image: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7)), url('images/header-activities.jpg');
}

.page-header.accommodation-header {
    background-image: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7)), url('images/header-accommodation.jpg');
}

.page-header.about-header {
    background-image: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7)), url('images/header-about.jpg');
}

.page-header.contact-header {
    background-image: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7)), url('images/header-contact.jpg');
}

.page-header.volunteering-header {
    background-image: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7)), url('images/header-volunteering.jpg');
}

.page-header.jobs-header {
    background-image: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7)), url('images/header-jobs.jpg');
}

.page-header.donate-header {
    background-image: linear-gradient(rgba(7, 66, 38, 0.7), rgba(7, 66, 38, 0.7)), url('images/header-donate.jpg');
}

.page-header h1 {
    font-family: var(--font-headline);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-family: var(--font-body);
}

.content-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    overflow: hidden;
}

.benefit-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(19,3,3,0.1);
    border-left: 4px solid var(--secondary-color);
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.benefit-card h3 {
    font-family: var(--font-subheadline);
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-family: var(--font-body);
}

.highlighted-activities {
    background: var(--bg-white);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 10px;
    border: 1px solid rgba(7, 66, 38, 0.1);
}

.highlighted-activities h2 {
    font-family: var(--font-subheadline);
    font-weight: bold;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.accommodation-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.accommodation-card:hover {
    transform: translateY(-5px);
}

.accommodation-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    overflow: hidden;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accommodation-details {
    padding: 1.5rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cta-section {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: 10px;
}

.cta-section h2 {
    font-family: var(--font-subheadline);
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.cta-section p {
    font-family: var(--font-body);
    color: var(--bg-white);
}

.cta-section .btn {
    background: var(--primary-color);
    color: var(--bg-white);
}

.cta-section .btn:hover {
    background: var(--primary-light);
}

.iframe-container {
    width: 100%;
    height: 800px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    margin: 2rem 0;
    overflow: hidden;
}

.iframe-container iframe {
    border: none;
    display: block;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(19,3,3,0.1);
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(19,3,3,0.12);
    border: 1px solid rgba(7, 66, 38, 0.1);
    min-width: 0;
}

.pricing-card-header {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.25rem 1.5rem;
}

.pricing-card-header h3 {
    font-family: var(--font-subheadline);
    font-size: 1.25rem;
    margin: 0;
    color: var(--bg-white);
}

.pricing-card-body {
    padding: 1.5rem;
    background: var(--bg-white);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.pricing-row:last-of-type {
    border-bottom: none;
}

.pricing-label {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-value {
    font-family: var(--font-subheadline);
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: right;
}

.pricing-value small {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
}

.pricing-note {
    margin-top: 1rem;
    padding-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    border-top: 1px solid var(--bg-light);
}

.activity-detail {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(19,3,3,0.1);
    margin: 2rem 0;
    border: 1px solid rgba(7, 66, 38, 0.1);
}

.activity-detail h2 {
    font-family: var(--font-subheadline);
    font-weight: bold;
    color: var(--primary-color);
}

.activity-detail h3 {
    font-family: var(--font-subheadline);
    font-weight: bold;
    color: var(--primary-color);
}

.similar-activities {
    margin-top: 3rem;
}

.similar-activities h2 {
    font-family: var(--font-subheadline);
    font-weight: bold;
    color: var(--primary-color);
}

.pricing-table {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.pricing-table h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-family: var(--font-subheadline);
    font-weight: bold;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    font-family: var(--font-body);
    color: var(--bg-white);
    text-decoration: none;
    line-height: 2.2;
    transition: color 0.3s;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-section p {
    font-family: var(--font-body);
    color: var(--bg-white);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(239,230,221,0.2);
}

.footer-bottom p {
    font-family: var(--font-body);
    color: var(--bg-white);
}

/* Additional tablet breakpoint handled in header styles above */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

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

    .activity-card {
        height: 120px;
        font-size: 1.1rem;
    }

    .offer-activities-grid .activity-card {
        height: 100px;
        font-size: 1rem;
    }

    .stat-item h3 {
        font-size: 1.75rem;
    }

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

    .feature-panel {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .feature-panel > h2 {
        font-size: 1.75rem;
    }

    .feature-panel > p {
        font-size: 0.95rem;
    }

    .programme-item {
        padding: 1.25rem;
    }

    .programme-item h3 {
        font-size: 1rem;
    }

    .programme-item p {
        font-size: 0.85rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }

    .page-offer > h2,
    .page-intro h2 {
        font-size: 1.75rem;
    }

    .page-offer > p,
    .page-intro p {
        font-size: 0.95rem;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .iframe-container {
        height: 500px;
    }

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

    .pricing-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .pricing-value {
        text-align: left;
    }

    .pricing-value small {
        display: inline;
    }
}

/* ============================================
   SCOUTS & GUIDES PAGE - Additional Styles
   ============================================ */

.page-intro {
    margin: 2rem 0 3rem;
}

.page-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
}

/* Flexible Programmes Section */
.feature-panel {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(19,3,3,0.1);
    margin: 3rem 0;
    border-top: 4px solid var(--primary-color);
    overflow: hidden;
}

.feature-panel > h2 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-panel > p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
    overflow: hidden;
}

.programme-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.programme-item:hover {
    transform: translateY(-3px);
}

.programme-icon {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.programme-icon:empty {
    display: none;
}

.programme-item h3 {
    font-family: var(--font-subheadline);
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.programme-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.programmes-note {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-light);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
}

/* What We Offer Section */
.page-offer {
    margin: 3rem 0;
}

.page-offer > h2 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.page-offer > p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.page-offer > h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

/* Activities grid inside What We Offer (reuses .activity-card) */
.offer-activities-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 1.5rem 0;
}

.offer-activities-grid .activity-card {
    height: 180px;
    font-size: 1.25rem;
}

/* Instructors Note */
.instructors-note {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 10px;
}

.instructors-note p {
    color: var(--bg-white);
    font-size: 1.05rem;
    line-height: 1.7;
}

.instructors-note strong {
    color: var(--bg-white);
}