:root {
    --maroon: #811A21;
    --beige: #E3D7B9;
    --white: #ffffff;
    --dark: #2f2f2f;
    --soft-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--beige);
    color: var(--dark);
    overflow-x: hidden;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('images/school.jpeg') no-repeat center center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* NAVBAR */
.navbar {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo img {
    width: 110px;
    height: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 20px;
    transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: var(--maroon);
    color: white;
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    max-width: 1000px;
}

.hero-content p {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 28px;
    color: #f5f5f5;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.35);
}

.hero-btn {
    display: inline-block;
    background-color: var(--beige);
    color: var(--maroon);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s ease;
    box-shadow: var(--soft-shadow);
}

.hero-btn:hover {
    background-color: var(--maroon);
    color: white;
}

/* WELCOME */
.welcome-section {
    padding: 70px 20px 40px;
    background-color: var(--beige);
    text-align: center;
}

.welcome-text {
    max-width: 900px;
    margin: 0 auto;
}

.welcome-text h2 {
    color: var(--maroon);
    font-size: 38px;
    margin-bottom: 15px;
}

.welcome-text p {
    font-size: 18px;
    line-height: 1.8;
}

/* HOME CARDS */
.highlights {
    padding: 40px 20px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    background-color: var(--beige);
}

.card {
    background-color: #f8f2e3;
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
    text-align: center;
    padding: 0 22px 32px;
    overflow: hidden;
}

.card-top {
    height: 90px;
    background-color: var(--maroon);
    margin: 0 -22px 0;
}

.card-icon {
    width: 120px;
    height: 120px;
    background-color: var(--beige);
    color: var(--maroon);
    border: 4px solid white;
    border-radius: 50%;
    margin: -60px auto 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    box-shadow: var(--soft-shadow);
}

.card h3 {
    color: var(--maroon);
    font-size: 26px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.card p {
    font-size: 17px;
    line-height: 1.7;
}

/* FOOTER */
.site-footer {
    background-color: var(--maroon);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 15px;
}

/* ANIMATIONS */
.pop-in {
    opacity: 0;
    transform: scale(0.92);
    animation: popIn 0.8s ease forwards;
}

.pop-in-delay {
    opacity: 0;
    transform: scale(0.92);
    animation: popIn 1s ease forwards;
    animation-delay: 0.2s;
}

.pop-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: popCard 0.8s ease forwards;
}

.pop-card:nth-child(1) {
    animation-delay: 0.1s;
}
.pop-card:nth-child(2) {
    animation-delay: 0.3s;
}
.pop-card:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    70% {
        opacity: 1;
        transform: scale(1.03);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popCard {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* SECTION HELPERS */
.beige-section {
    background-color: var(--beige);
}

.maroon-section {
    background-color: var(--maroon);
}

/* =========================
   ABOUT PAGE
========================= */

.about-hero-section {
    position: relative;
    min-height: 75vh;
    background: url('images/house.jpeg') no-repeat center center/cover;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    min-height: calc(75vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.about-hero-content h1 {
    font-size: 64px;
    margin-bottom: 18px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.about-hero-content p {
    font-size: 24px;
    max-width: 850px;
    line-height: 1.8;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.35);
}

.about-page-content {
    padding: 0;
}

.about-section {
    padding: 70px 8%;
}

.about-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.about-text-box {
    background-color: #f8f2e3;
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: var(--soft-shadow);
}

.about-text-box h3 {
    color: var(--maroon);
    font-size: 32px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.about-text-box p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 14px;
    color: var(--dark);
}

.about-text-box p:last-child {
    margin-bottom: 0;
}

.about-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-side-image {
    width: 100%;
    max-width: 500px;
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
    display: block;
    object-fit: cover;
}

/* ABOUT STORY SECTION */
.about-story-section {
    padding: 80px 8%;
}

.about-story-layout {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-story-text {
    background-color: transparent;
    box-shadow: none;
    padding: 0 10px 0 0;
}

.story-badge {
    display: inline-block;
    background-color: #edf2e8;
    color: #3f6f9f;
    border: 2px solid #cdddc7;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 26px;
    letter-spacing: 0.5px;
}

.about-story-text h2 {
    font-size: 54px;
    line-height: 1.2;
    color: var(--maroon);
    margin-bottom: 26px;
    font-weight: 800;
    max-width: 700px;
}

.about-story-text p {
    font-size: 22px;
    line-height: 1.9;
    color: #3d4354;
    margin-bottom: 24px;
    max-width: 760px;
}

.about-story-text strong {
    color: var(--maroon);
}

.about-story-gallery {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    grid-template-rows: 260px 260px;
    gap: 24px;
    align-items: stretch;
}

.gallery-item {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--soft-shadow);
    background-color: #f8f2e3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-large {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.gallery-item-tall {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.about-story-gallery .gallery-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* PHILOSOPHY SECTION */
.philosophy-section {
    padding: 80px 6%;
}

.philosophy-header {
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
    color: var(--white);
}

.philosophy-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #edf2e8;
    color: #2f6c9e;
    border: 2px solid #c9dbc2;
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.4px;
}

.philosophy-header h2 {
    font-size: 54px;
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.philosophy-header p {
    font-size: 20px;
    line-height: 1.8;
    color: #f7f1e6;
    max-width: 820px;
    margin: 0 auto;
}

.philosophy-cards {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.philosophy-card {
    background: #f7f5f7;
    border-radius: 28px;
    padding: 40px 34px;
    min-height: 250px;
    box-shadow: var(--soft-shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 2px solid transparent;
}

.philosophy-card p {
    font-size: 20px;
    line-height: 1.8;
    color: #1f2436;
    font-weight: 700;
    margin: 0;
}

.philosophy-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.philosophy-card-blue {
    border-color: #c8d9ef;
    background: linear-gradient(135deg, #eef4fb 0%, #f6f8fc 100%);
}

.philosophy-card-pink {
    border-color: #e7d2f8;
    background: linear-gradient(135deg, #f9f1fd 0%, #faf7fc 100%);
}

.philosophy-card-green {
    border-color: #d3e7c8;
    background: linear-gradient(135deg, #f1f8ed 0%, #f8fbf6 100%);
}

.philosophy-icon-blue {
    background: linear-gradient(135deg, #0d63c9 0%, #2968e2 100%);
}

.philosophy-icon-pink {
    background: linear-gradient(135deg, #a84cc7 0%, #ef4c73 100%);
}

.philosophy-icon-green {
    background: linear-gradient(135deg, #6aad17 0%, #e0b033 100%);
}

/* STEM */
.stem-bottom-section {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.stem-bottom-image {
    width: 100%;
    max-width: 700px;
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    text-align: center;
}

.stem-bottom-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

.stem-bottom-text {
    width: 100%;
    max-width: 700px;
    background-color: #f8f2e3;
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: var(--soft-shadow);
    text-align: center;
}

.stem-bottom-text h3 {
    color: var(--maroon);
    font-size: 32px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.stem-bottom-text p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--dark);
}

.stem-bottom-text strong {
    color: var(--maroon);
    font-weight: 800;
}

/* =========================
   ACTIVITIES PAGE
========================= */

.activities-hero-section {
    position: relative;
    min-height: 75vh;
    background: url('images/house.jpeg') no-repeat center center/cover;
    overflow: hidden;
}

.activities-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.activities-hero-image-content {
    position: relative;
    z-index: 2;
    min-height: calc(75vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
}

.activities-hero-image-content h1 {
    color: var(--white);
    font-size: 58px;
    margin-bottom: 22px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.activities-description-box {
    max-width: 1100px;
    margin: 0 auto 30px;
    background-color: rgba(129, 26, 33, 0.92);
    color: var(--white);
    border-radius: 24px;
    padding: 26px 30px;
    box-shadow: var(--soft-shadow);
}

.activities-description-box p {
    font-size: 22px;
    line-height: 1.9;
    color: var(--white);
    font-weight: bold;
    margin: 0;
}

.activities-banner {
    width: 100%;
    max-width: 1100px;
    display: block;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.activities-page-content {
    background-color: var(--beige);
    padding: 50px 20px 80px;
}

.activities-card-grid {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.activities-card-grid .activity-card:nth-child(4) {
    grid-column: 2 / 3;
}

.activity-card {
    background-color: #f8f2e3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-6px);
}

.activity-card-image-wrap {
    width: 100%;
    padding: 18px 18px 0;
}

.activity-card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.activity-card-body {
    padding: 22px 22px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.activity-card-body h2 {
    color: var(--maroon);
    font-size: 28px;
    line-height: 1.35;
    min-height: 76px;
}

.details-btn {
    align-self: center;
    background-color: var(--maroon);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: var(--soft-shadow);
}

.details-btn:hover {
    background-color: #5f1217;
}

.activity-details {
    display: none;
    background-color: var(--beige);
    border-radius: 14px;
    padding: 18px 16px;
    text-align: left;
}

.activity-details p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    font-weight: bold;
}

.activity-video {
    width: 100%;
    margin-top: 16px;
    border-radius: 14px;
    box-shadow: var(--soft-shadow);
    display: block;
}

/* =========================
   CONTACTS PAGE
========================= */

.contacts-hero-section {
    position: relative;
    min-height: 75vh;
    background: url('images/house.jpeg') no-repeat center center/cover;
    overflow: hidden;
}

.contacts-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.contacts-hero-content {
    position: relative;
    z-index: 2;
    min-height: calc(75vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.contacts-hero-content h1 {
    font-size: 64px;
    margin-bottom: 18px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.contacts-hero-content p {
    font-size: 24px;
    max-width: 850px;
    line-height: 1.8;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.35);
}

.contacts-page-content {
    background-color: var(--beige);
    padding: 70px 20px 80px;
}

.contacts-main-section {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 35px;
    align-items: start;
}

.contacts-map-box,
.contacts-info-box {
    background-color: #f8f2e3;
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--soft-shadow);
}

.contacts-map-box h2,
.contacts-info-box h2 {
    color: var(--maroon);
    font-size: 34px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.contacts-map-box iframe {
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
}

.contact-info-item {
    margin-bottom: 26px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item h3 {
    color: var(--maroon);
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    font-size: 22px;
    color: var(--maroon);
    width: 26px;
    text-align: center;
    flex-shrink: 0;
}

.contact-info-item p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark);
}

/* CONTACT TEXT LINKS */
.contact-text-link {
    color: #3f3f3f;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-text-link:hover {
    color: var(--maroon);
    text-decoration: underline;
}

/* FOLLOW US SECTION UNDER MAP */
.follow-us-section {
    margin-top: 28px;
    text-align: left;
}

.follow-us-section h3 {
    color: var(--maroon);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.follow-us-icons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.follow-icon-btn {
    width: 62px;
    height: 62px;
    background-color: #f3efe4;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 34px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.follow-icon-btn:hover {
    transform: translateY(-4px);
    background-color: var(--maroon);
}

.follow-icon-btn .fa-whatsapp {
    color: #25D366;
}

.follow-icon-btn .fa-tiktok {
    color: #111111;
}

.follow-icon-btn .fa-facebook-f {
    color: #1877F2;
}

.follow-icon-btn .fa-instagram {
    color: #E1306C;
}

.follow-icon-btn:hover i {
    color: var(--white);
}

/* CONTACT US SECTION UNDER MAP */
.contact-us-section {
    margin-top: 30px;
    text-align: left;
}

.contact-us-section h3 {
    color: var(--maroon);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.contact-us-icons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-whatsapp-btn .fa-whatsapp {
    color: #25D366;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .highlights {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }

    .about-row {
        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {
        font-size: 46px;
    }

    .about-hero-content p {
        font-size: 20px;
    }

    .about-side-image {
        max-width: 700px;
    }

    .about-story-layout {
        grid-template-columns: 1fr;
    }

    .about-story-text {
        padding-right: 0;
    }

    .about-story-text h2 {
        font-size: 40px;
    }

    .about-story-text p {
        font-size: 18px;
    }

    .about-story-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px;
    }

    .philosophy-header h2 {
        font-size: 40px;
    }

    .philosophy-header p {
        font-size: 18px;
    }

    .philosophy-cards {
        grid-template-columns: 1fr;
    }

    .activities-hero-image-content h1 {
        font-size: 44px;
    }

    .activities-description-box p {
        font-size: 19px;
    }

    .activities-banner {
        max-width: 900px;
    }

    .activities-card-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }

    .contacts-main-section {
        grid-template-columns: 1fr;
    }

    .contacts-hero-content h1 {
        font-size: 46px;
    }

    .contacts-hero-content p {
        font-size: 20px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .about-hero-section,
    .activities-hero-section,
    .contacts-hero-section {
        min-height: 65vh;
    }

    .about-hero-content h1,
    .contacts-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content p,
    .contacts-hero-content p {
        font-size: 17px;
    }

    .about-text-box,
    .stem-bottom-text {
        padding: 28px 22px;
    }

    .about-text-box h3,
    .stem-bottom-text h3 {
        font-size: 26px;
    }

    .about-text-box p,
    .stem-bottom-text p {
        font-size: 16px;
    }

    .story-badge {
        font-size: 14px;
        padding: 8px 18px;
    }

    .about-story-text h2 {
        font-size: 30px;
    }

    .about-story-text p {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-story-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item,
    .gallery-item-large,
    .gallery-item-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item img {
        height: 260px;
    }

    .philosophy-section {
        padding: 60px 5%;
    }

    .philosophy-badge {
        font-size: 13px;
        padding: 8px 16px;
    }

    .philosophy-header h2 {
        font-size: 32px;
    }

    .philosophy-header p {
        font-size: 16px;
    }

    .philosophy-card {
        padding: 28px 22px;
        min-height: auto;
    }

    .philosophy-card p {
        font-size: 17px;
    }

    .activities-hero-image-content h1 {
        font-size: 34px;
    }

    .activities-description-box {
        padding: 22px 20px;
    }

    .activities-description-box p {
        font-size: 17px;
        line-height: 1.8;
    }

    .activities-banner {
        max-width: 100%;
        border-radius: 14px;
    }

    .activities-card-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .activity-card-image {
        height: 240px;
    }

    .activity-card-body h2 {
        font-size: 24px;
        min-height: auto;
    }

    .activity-video {
        margin-top: 14px;
        border-radius: 12px;
    }

    .contacts-map-box,
    .contacts-info-box {
        padding: 22px;
    }

    .contacts-map-box h2,
    .contacts-info-box h2 {
        font-size: 28px;
    }

    .contact-info-item h3 {
        font-size: 21px;
    }

    .info-icon {
        font-size: 20px;
        width: 24px;
    }

    .contact-info-item p {
        font-size: 16px;
    }

    .follow-us-section {
        text-align: center;
    }

    .follow-us-icons {
        justify-content: center;
    }

    .contact-us-section {
        text-align: center;
    }

    .contact-us-icons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 18px 16px;
    }

    .logo img {
        width: 75px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 14px;
        padding: 7px 12px;
    }

    .hero-content {
        padding: 20px 16px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .welcome-section {
        padding: 50px 16px 30px;
    }

    .welcome-text h2 {
        font-size: 28px;
    }

    .welcome-text p {
        font-size: 16px;
    }

    .highlights {
        padding: 30px 16px 60px;
    }

    .card h3 {
        font-size: 22px;
    }

    .card p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 14px;
    }

    .about-hero-content h1,
    .contacts-hero-content h1 {
        font-size: 28px;
    }

    .about-hero-content p,
    .contacts-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-side-image,
    .about-text-box,
    .stem-bottom-text {
        border-radius: 14px;
    }

    .activities-page-content {
        padding: 30px 14px 60px;
    }

    .activities-hero-image-content {
        padding: 10px 14px 10px;
    }

    .activities-hero-image-content h1 {
        font-size: 28px;
    }

    .activities-description-box {
        padding: 18px 16px;
        border-radius: 18px;
        margin-bottom: 22px;
    }

    .activities-description-box p {
        font-size: 15px;
        line-height: 1.7;
    }

    .activities-banner {
        border-radius: 12px;
    }

    .activity-card {
        border-radius: 18px;
    }

    .activity-card-image-wrap {
        padding: 14px 14px 0;
    }

    .activity-card-image {
        height: 220px;
        border-radius: 14px;
    }

    .activity-card-body {
        padding: 18px 16px 22px;
    }

    .activity-card-body h2 {
        font-size: 21px;
    }

    .details-btn {
        width: 100%;
    }

    .activity-video {
        border-radius: 10px;
    }

    .contacts-page-content {
        padding: 40px 14px 60px;
    }

    .contacts-map-box,
    .contacts-info-box {
        border-radius: 16px;
        padding: 18px;
    }

    .contacts-map-box iframe {
        height: 300px;
        border-radius: 12px;
    }

    .info-icon {
        font-size: 18px;
        width: 22px;
    }

    .follow-icon-btn {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .follow-us-section h3,
    .contact-us-section h3 {
        font-size: 20px;
    }
}