/* Theoyom Schools - Minimalist Design System */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #fff9f0;
    /* Warmer background */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-color: #0077B6;
    /* Brighter, friendlier blue */
    --primary-dark: #023E8A;
    --secondary-color: #FFB703;
    /* Warm Amber */
    --accent-green: #06D6A0;
    --accent-pink: #EF476F;
    --accent-purple: #9D4EDD;
    --text-color: #2d3748;
    --bg-color: #FFF9F0;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 119, 182, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 119, 182, 0.15);
    --shadow-lg: 0 20px 25px rgba(0, 119, 182, 0.2);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 9999px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fredoka', sans-serif;
    /* Force Fredoka for all headings */
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
    color: #4a5568;
}

a {
    color: #0D304E;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1E405A;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.section__title {
    text-align: center;
    margin-bottom: 3rem;
    color: #0D304E;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    /* Pill shape */
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 50px;
    letter-spacing: 0.5px;
}

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

.btn--primary:hover {
    background-color: #ffca3a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 183, 3, 0.3);
}

.btn:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

.btn--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 48, 78, 0.2);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.nav__logo-img {
    height: 60px;
    width: auto;
    max-width: 300px;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav__link {
    font-weight: 500;
    color: #0D304E;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover,
.nav__link--active {
    color: #1E405A;
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #f59e0b;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle-line {
    width: 25px;
    height: 3px;
    background-color: #1e3a8a;
    margin: 3px 0;
    transition: 0.3s;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background-color: #E0F7FA;
    /* Very light blue background */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 183, 3, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(239, 71, 111, 0.1) 0%, transparent 20%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

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

.hero__content {
    max-width: 600px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
}

.hero__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
    padding: 3rem 0;
    background-color: #0D304E;
    color: white;
}

.stats__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.stats__item {
    text-align: center;
}

.stats__number {
    font-size: 3rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.stats__label {
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
}

/* Why Choose Us Section */
.why-choose {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.why-choose__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose__item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    border-bottom: 6px solid transparent;
}

/* Playful Multi-colored Cards */
.why-choose__item:nth-child(1) {
    border-bottom-color: var(--secondary-color);
}

.why-choose__item:nth-child(1) .why-choose__icon {
    background: var(--secondary-color);
}

.why-choose__item:nth-child(2) {
    border-bottom-color: var(--accent-pink);
}

.why-choose__item:nth-child(2) .why-choose__icon {
    background: var(--accent-pink);
}

.why-choose__item:nth-child(3) {
    border-bottom-color: var(--accent-green);
}

.why-choose__item:nth-child(3) .why-choose__icon {
    background: var(--accent-green);
}

.why-choose__item:nth-child(4) {
    border-bottom-color: var(--accent-purple);
}

.why-choose__item:nth-child(4) .why-choose__icon {
    background: var(--accent-purple);
}

.why-choose__item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.why-choose__icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.why-choose__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.why-choose__text {
    color: #4a5568;
    line-height: 1.6;
}

/* Classes Section */
.classes {
    padding: 6rem 0;
    background-color: white;
}

.classes__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.classes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.classes__card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.classes__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.classes__image {
    height: 250px;
    overflow: hidden;
}

.classes__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.classes__card:hover .classes__img {
    transform: scale(1.05);
}

.classes__content {
    padding: 2rem;
}

.classes__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.classes__age {
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.classes__description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.classes__features {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.classes__features p {
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-size: 0.9rem;
}

.classes__features p:last-child {
    margin-bottom: 0;
}

.classes__link {
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.classes__link:hover {
    color: #f59e0b;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: white;
}

.features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.features__item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.features__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.features__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0D304E;
}

.features__text {
    color: #4a5568;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial__card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 5px solid var(--secondary-color);
}

.testimonial__card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #f59e0b;
    font-family: serif;
}

.testimonial__content {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial__text {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.testimonial__name {
    font-weight: 600;
    color: #0D304E;
    margin: 0;
    font-size: 1rem;
}

.testimonial__role {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__info h4 {
    margin: 0;
    font-size: 1rem;
    color: #1e3a8a;
}

.testimonial__info p {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Contact CTA Section */
.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.contact-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-cta__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-cta__text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.contact-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta .btn--primary {
    background-color: #f59e0b;
    color: #1e3a8a;
}

.contact-cta .btn--primary:hover {
    background-color: #d97706;
}

.contact-cta .btn--secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.contact-cta .btn--secondary:hover {
    background-color: white;
    color: #1e3a8a;
}

/* Footer */
.footer {
    background-color: #0D304E;
    color: white;
    padding: 3rem 0 1rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.footer__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer__subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #f59e0b;
}

.footer__text {
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease;
}

.footer__social-link:hover {
    background-color: #f59e0b;
    color: #1e3a8a;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #f59e0b;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e0;
    margin: 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer__copyright {
    color: #cbd5e0;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav__logo-img {
        height: 50px;
        max-width: 250px;
    }

    .nav__menu {
        position: fixed;
        top: 80px;
        /* Header height on mobile */
        left: 0;
        right: 0;
        background-color: white;
        border-top: 1px solid #e2e8f0;
        padding: 2rem 1rem;
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav__menu.active {
        transform: translateY(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__actions .btn {
        display: none;
        /* Hide CTA button in header on mobile to save space */
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__actions {
        justify-content: center;
    }

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

    .stats__number {
        font-size: 2rem;
    }

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

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

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

    .contact-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav__logo-img {
        height: 45px;
        max-width: 200px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .section__title {
        font-size: 2rem;
    }

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

    .why-choose__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .btn--large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus States for Accessibility */
.btn:focus,
.nav__link:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0D304E 0%, #1E405A 100%);
    color: white;
    text-align: center;
}

.page-header__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-header__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-header__subtitle {
    font-size: 1.25rem;
    color: white;
    opacity: 0.9;
    margin: 0;
}

/* Our Story Section */
.our-story {
    padding: 6rem 0;
    background-color: white;
}

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

.our-story__text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.our-story__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.mission-vision__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mission-vision__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-vision__card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mission-vision__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
}

.mission-vision__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.mission-vision__text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Our Values */
.our-values {
    padding: 6rem 0;
    background-color: white;
}

.our-values__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.our-values__item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.our-values__item:hover {
    transform: translateY(-5px);
}

.our-values__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.our-values__text {
    color: #4a5568;
    line-height: 1.6;
}

/* Our Team */
.our-team {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.our-team__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.our-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.our-team__member {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.our-team__member:hover {
    transform: translateY(-5px);
}

.our-team__image {
    height: 250px;
    overflow: hidden;
}

.our-team__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-team__content {
    padding: 2rem;
}

.our-team__name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.our-team__role {
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.our-team__bio {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    padding: 6rem 0;
    background-color: white;
}

.contact-info__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info__item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info__item:hover {
    transform: translateY(-5px);
}

.contact-info__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.contact-info__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.contact-info__text {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.contact-info__link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
}

.contact-info__link:hover {
    color: #f59e0b;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.contact-form-section__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-form-section__text {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form-section__map {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.contact-form-section__map-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.contact-form-section__map-container {
    height: 300px;
    background: #f8f9fa;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #374151;
    padding: 2rem;
    border-radius: 0.5rem;
}

.map-placeholder__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-placeholder p {
    margin: 0.5rem 0 1.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.map-placeholder .btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Quick Inquiry */
.quick-inquiry {
    padding: 6rem 0;
    background-color: white;
}

.quick-inquiry__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.quick-inquiry__text {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

.inquiry-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1rem;
}

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

/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
    border-color: #1e3a8a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Classes Overview */
.classes-overview {
    padding: 6rem 0;
    background-color: white;
}

.classes-overview__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.classes-overview__text {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    margin-top: 2rem;
}

/* Class Detail */
.class-detail {
    padding: 6rem 0;
}

.class-detail--reverse {
    background-color: #f8f9fa;
}

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

.class-detail--reverse .class-detail__container {
    grid-template-columns: 1fr 1fr;
}

.class-detail--reverse .class-detail__content {
    order: 2;
}

.class-detail--reverse .class-detail__image {
    order: 1;
}

.class-detail__title {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.class-detail__age {
    color: #f59e0b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.class-detail__description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.class-detail__features-title,
.class-detail__curriculum-title {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.class-detail__features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.class-detail__features-list li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.class-detail__features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.class-detail__curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.curriculum-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.curriculum-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.curriculum-item p {
    color: #4a5568;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.class-detail__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Extracurricular Activities */
.extracurricular {
    padding: 6rem 0;
    background-color: white;
}

.extracurricular__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.extracurricular__text {
    font-size: 1.125rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.extracurricular__item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

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

.extracurricular__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.extracurricular__title {
    font-size: 1.25rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.extracurricular__description {
    color: #4a5568;
    line-height: 1.6;
}

/* Why Choose Classes */
.why-choose-classes {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.why-choose-classes__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.why-choose-classes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-classes__item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.why-choose-classes__item:hover {
    transform: translateY(-5px);
}

.why-choose-classes__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.why-choose-classes__title {
    font-size: 1.25rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.why-choose-classes__text {
    color: #4a5568;
    line-height: 1.6;
}

/* Featured Testimonials */
.featured-testimonials {
    padding: 6rem 0;
    background-color: white;
}

.featured-testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.featured-testimonials__text {
    font-size: 1.125rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Success Stories */
.success-stories {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.success-stories__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.success-stories__text {
    font-size: 1.125rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.success-stories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.success-story {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.success-story:hover {
    transform: translateY(-5px);
}

.success-story__image {
    height: 200px;
    overflow: hidden;
}

.success-story__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-story__content {
    padding: 2rem;
}

.success-story__title {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.success-story__description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.success-story__author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.success-story__author strong {
    color: #1e3a8a;
    display: block;
    margin-bottom: 0.25rem;
}

.success-story__author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Alumni Testimonials */
.alumni-testimonials {
    padding: 6rem 0;
    background-color: white;
}

.alumni-testimonials__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.alumni-testimonials__text {
    font-size: 1.125rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.alumni-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.alumni-testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #1e3a8a;
}

.alumni-testimonial__quote {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.alumni-testimonial__author strong {
    color: #1e3a8a;
    display: block;
    margin-bottom: 0.25rem;
}

.alumni-testimonial__author span {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Testimonials CTA */
.testimonials-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.testimonials-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonials-cta__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.testimonials-cta__text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.testimonials-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonials-cta .btn--primary {
    background-color: #f59e0b;
    color: #1e3a8a;
}

.testimonials-cta .btn--primary:hover {
    background-color: #d97706;
}

.testimonials-cta .btn--secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.testimonials-cta .btn--secondary:hover {
    background-color: white;
    color: #1e3a8a;
}

/* News Categories */
.news-categories {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.news-categories__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.news-categories__filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.news-filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-filter-btn:hover {
    border-color: #1e3a8a;
    color: #1e3a8a;
}

.news-filter-btn--active {
    background-color: #1e3a8a;
    border-color: #1e3a8a;
    color: white;
}

/* News Grid */
.news-grid {
    padding: 4rem 0;
    background-color: white;
}

.news-grid__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.news-grid__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-item__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-item__img {
    transform: scale(1.05);
}

.news-item__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #1e3a8a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-item__content {
    padding: 1.5rem;
}

.news-item__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.news-item__title {
    margin-bottom: 1rem;
}

.news-item__title-link {
    color: #1e3a8a;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.news-item__title-link:hover {
    color: #f59e0b;
}

.news-item__excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-item__read-more {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
}

.news-item__read-more:hover {
    color: #f59e0b;
}

/* News Loading */
.news-loading {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.news-load-more {
    text-align: center;
    margin-top: 2rem;
}

.no-news {
    text-align: center;
    color: #6b7280;
    font-size: 1.125rem;
    padding: 3rem;
}

/* Featured News */
.featured-news {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.featured-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.featured-news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.featured-news__item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.featured-news__item:hover {
    transform: translateY(-5px);
}

.featured-news__image {
    height: 250px;
    overflow: hidden;
}

.featured-news__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-news__content {
    padding: 2rem;
}

.featured-news__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.featured-news__category {
    background: #1e3a8a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-news__date {
    color: #6b7280;
}

.featured-news__title {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-news__excerpt {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-news__link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
}

.featured-news__link:hover {
    color: #f59e0b;
}

/* Upcoming Events */
.upcoming-events {
    padding: 6rem 0;
    background-color: white;
}

.upcoming-events__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.event-card {
    display: flex;
    background: #f8f9fa;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
}

.event-card__date {
    background: #1e3a8a;
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    margin-right: 1.5rem;
    min-width: 80px;
}

.event-card__day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-card__month {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.event-card__title {
    font-size: 1.25rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.event-card__description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.newsletter-signup__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.newsletter-signup__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.newsletter-signup__text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.newsletter-form__group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.newsletter-form__input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: white;
}

.gallery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery__item {
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__img {
    transform: scale(1.05);
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .our-story__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .page-header__title {
        font-size: 2.5rem;
    }

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

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

    .contact-info__item {
        min-height: 180px;
        padding: 1rem;
    }

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

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

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

    .class-detail--reverse .class-detail__content {
        order: 1;
    }

    .class-detail--reverse .class-detail__image {
        order: 2;
    }

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

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

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

    .testimonials-cta__actions {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .event-card__date {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }

    .newsletter-form__group {
        flex-direction: column;
    }
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .btn {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero__title {
        font-size: 24pt;
    }
}