:root {
    --primary-blue: #002868;
    --primary-red: #A32629;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-text: #1a1a1a;
    --accent-gold: #FFDF16;
    --blue-violet: #7A7A60;
    --gradient-blue: #2a2a60;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--white);
    /* padding-top: 70px; */ /* Account for fixed navbar - commented out while navbar is hidden */
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gradient-blue) 0%, var(--gradient-blue) 70%, var(--accent-gold) 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.social-link {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.5rem 0.8rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Header */
header {
    position: relative;
}

.blue-stripe {
    height: 10px;
    background: var(--gradient-blue);
    width: 100%;
}


/* Donate Section */
.donate-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid rgba(0, 40, 104, 0.1);
}

.donate-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.donate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    width: 300px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a4a 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.donate-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.donate-button:hover::before {
    left: 100%;
}

.donate-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, #001a4a 0%, var(--primary-blue) 100%);
}

.registration-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    width: 300px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #d82c3e 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.registration-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.registration-button:hover::before {
    left: 100%;
}

.registration-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, #d82c3e 0%, var(--primary-red) 100%);
}

/* How Do I Help — match primary blue (donate-style) buttons */
a.registration-button[href="howdoi.html"] {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a4a 100%);
}

a.registration-button[href="howdoi.html"]:hover {
    background: linear-gradient(135deg, #001a4a 0%, var(--primary-blue) 100%);
}

.registration-button i {
    font-size: 1.2rem;
}

/* Podcast Button */
.podcast-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    width: 300px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.podcast-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.podcast-button:hover::before {
    left: 100%;
}

.podcast-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, #b8941f 0%, var(--accent-gold) 100%);
}

.podcast-button i {
    font-size: 1.2rem;
}

.donate-button i {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 3rem;
}

.hero {
    margin: 1rem 0 3rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 40, 104, 0.1);
    position: relative;
    overflow: hidden;
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gradient-blue) 0%, var(--gradient-blue) 70%, var(--accent-gold) 100%);
    border-radius: 20px 20px 0 0;
}


.profile-image {
    width: 80%;
    height: auto;
    min-height: 320px;
    max-width: 80%;
    object-fit: cover;
    background: transparent;
    display: block;
    margin: -1rem auto 2.5rem;
    border-radius: 15px;
}

.hero-video {
    width: 100%;
    max-width: 800px;
    min-height: 0;
    background: #000;
    object-fit: cover;
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    margin: -1rem auto 2.5rem;
    display: block;
}

.hero-video-shell {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: -1rem auto 2.5rem;
}

.hero-video-shell .hero-video {
    max-width: 100%;
    margin: 0;
}

.hero-video-shell.mobile-only {
    display: none;
    max-width: 420px;
    aspect-ratio: 4 / 5;
}

.hero-video-shell.desktop-only {
    aspect-ratio: 16 / 9;
}

.hero-video {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .hero-video-shell.desktop-only {
        display: none;
    }

    .hero-video-shell.mobile-only {
        display: block;
    }
}

/* Hero letters slider (4:5 images, index.html) */
.hero-slider {
    margin: -1rem auto 2.5rem;
    width: 100%;
    max-width: min(100%, 520px);
}

.hero-slider-stage {
    position: relative;
    width: 100%;
}

.hero-slider-heading {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1.25rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-slider-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 4 / 5;
    background: linear-gradient(145deg, #001a4a 0%, #002868 100%);
}

.hero-slider-track {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    transition: transform 0.55s ease;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slider-track {
        transition: none;
    }
}

.hero-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-slider-swipe-hint {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    border: none;
    background: transparent;
    padding: 0.25rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    color: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
}

.hero-slider-swipe-hint:focus {
    outline: none;
}

.hero-slider-swipe-hint:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

.hero-slider-swipe-hint-disk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.hero-slider-swipe-hint:hover .hero-slider-swipe-hint-disk {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.55);
}

.hero-slider-swipe-hint:active .hero-slider-swipe-hint-disk {
    transform: scale(0.96);
}

.hero-slider-swipe-hint-disk svg {
    display: block;
    width: 22px;
    height: 22px;
}

.hero-slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider-dot:hover {
    transform: scale(1.15);
}

.hero-slider-dot[aria-selected="true"] {
    background: var(--primary-blue);
}

@media (min-width: 769px) {
    .hero-slider {
        max-width: min(100%, 700px);
    }

    .hero-slider-stage {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
    }

    .hero-slider-viewport {
        flex: 0 1 560px;
        max-width: 560px;
        width: 100%;
    }

    .hero-slider-swipe-hint {
        position: static;
        transform: none;
        color: var(--primary-blue);
    }

    .hero-slider-swipe-hint-disk {
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(0, 40, 104, 0.2);
        box-shadow: var(--shadow-light);
    }

    .hero-slider-swipe-hint:hover .hero-slider-swipe-hint-disk {
        background: var(--primary-blue);
        border-color: var(--primary-blue);
    }

    .hero-slider-swipe-hint:hover {
        color: var(--white);
    }
}

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

    .hero-slider-stage {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .hero-slider-swipe-hint {
        position: absolute;
        top: 50%;
        z-index: 5;
        padding: 0.2rem;
    }

    .hero-slider-swipe-hint-left {
        left: 0.2rem;
        transform: translateY(-50%);
    }

    .hero-slider-swipe-hint-right {
        right: 0.2rem;
        transform: translateY(-50%);
    }
}

@keyframes hero-slider-swipe-hint-pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    .hero-slider-swipe-hint-left .hero-slider-swipe-hint-disk {
        animation: hero-slider-swipe-hint-pulse 2.4s ease-in-out infinite;
    }

    .hero-slider-swipe-hint-right .hero-slider-swipe-hint-disk {
        animation: hero-slider-swipe-hint-pulse 2.4s ease-in-out infinite;
        animation-delay: 0.35s;
    }
}

@media (max-width: 480px) {
    .hero-slider-heading {
        font-size: 1.8rem;
    }

    .hero-slider-swipe-hint-disk {
        width: 42px;
        height: 42px;
    }

    .hero-slider-swipe-hint-disk svg {
        width: 20px;
        height: 20px;
    }

    .hero-slider-dot {
        width: 8px;
        height: 8px;
    }
}

#hero-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    text-align: center;
}



/* Home page thank-you message (index.html) */
.thanks-message {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-text);
}

.thanks-message p {
    margin-bottom: 1.25rem;
}

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

.thanks-signature {
    color: var(--primary-blue);
    font-style: italic;
    font-weight: 600;
}

@media (min-width: 769px) {
    .thanks-message {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .thanks-signature {
        margin-top: 1.5rem;
    }
}

#hero-plan {
    padding: 2rem 3rem;
    margin: 2rem auto;
    max-width: 800px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Platform Section */
.platform-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 40, 104, 0.1);
    position: relative;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gradient-blue) 0%, var(--gradient-blue) 70%, var(--accent-gold) 100%);
    border-radius: 20px 20px 0 0;
}

.platform-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.platform-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.platform-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 40, 104, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-blue) 0%, var(--gradient-blue) 70%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-light);
}

.platform-item h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.platform-item p {
    color: var(--dark-text);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

/* Platform Item Links */
.platform-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.platform-item-link .platform-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.learn-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.platform-item-link:hover .learn-more {
    color: var(--primary-red);
}

.platform-item-link:hover .learn-more i {
    transform: translateX(5px);
}

/* Gallery Section */
.gallery-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 40, 104, 0.1);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gradient-blue) 0%, var(--gradient-blue) 70%, var(--accent-gold) 100%);
    border-radius: 20px 20px 0 0;
}

.gallery-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.gallery-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-blue) 0%, var(--gradient-blue) 70%, var(--accent-gold) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.placeholder-image p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
}

.gallery-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.gallery-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.gallery-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 40, 104, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 40, 104, 0.1);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gradient-blue) 0%, var(--gradient-blue) 70%, var(--accent-gold) 100%);
    border-radius: 20px 20px 0 0;
}

.contact h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.social-button:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: var(--white);
}

.social-button.facebook {
    background: #1877f2;
}

.social-button.facebook:hover {
    background: #166fe5;
}

/* Compact Header for Landing Pages */
.compact-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a4a 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.compact-banner h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding: 0 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.compact-banner p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    margin: 0;
}

/* Share Section */
.share-section {
    background: rgba(0, 40, 104, 0.02);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 40, 104, 0.1);
}

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

.facebook-share-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(24, 119, 242, 0.2);
}

.facebook-share-link:hover {
    background: rgba(24, 119, 242, 0.15);
    color: #166fe5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.2);
}

.facebook-share-link i {
    font-size: 1rem;
}

/* Registration Page Styles */
.registration-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.registration-content-section {
    margin: 2rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 40, 104, 0.1);
    position: relative;
    overflow: hidden;
}

.registration-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gradient-blue) 0%, var(--gradient-blue) 70%, var(--accent-gold) 100%);
}

.registration-content {
    padding: 1rem 0;
}

/* Photo and Quote Section */
.photo-quote-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.photo-container {
    margin-bottom: 2rem;
}

.profile-image-small {
    width: 400px;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--white);
}

.janie-quote {
    max-width: 600px;
    margin: 0 auto;
}

.janie-quote p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.janie-quote p:first-child {
    font-style: italic;
    font-weight: 600;
    font-size: 1.3rem;
}

.quote-attribution {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.registration-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-text);
}

.important-notice {
    background: rgba(191, 10, 48, 0.05);
    border-left: 5px solid var(--primary-red);
    border-top: 1px solid rgba(191, 10, 48, 0.2);
    border-right: 1px solid rgba(191, 10, 48, 0.2);
    border-bottom: 1px solid rgba(191, 10, 48, 0.2);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.important-notice::before {
    content: '⚠️';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 1.5rem;
}

.important-notice h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-left: 3rem;
}

.registration-links {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--accent-gold);
}

.registration-links h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}


.registration-button.primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a4a 100%);
    color: var(--white);
    padding: 1.2rem 2rem;
    width: 350px;
}

.registration-button.secondary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    color: var(--white);
    padding: 1.2rem 2rem;
    width: 350px;
}

.registration-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.registration-button:hover::before {
    left: 100%;
}

.registration-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.registration-button.primary:hover {
    background: linear-gradient(135deg, #001a4a 0%, var(--primary-blue) 100%);
}

.registration-button.secondary:hover {
    background: linear-gradient(135deg, #b8941f 0%, var(--accent-gold) 100%);
}

.registration-button i {
    font-size: 1.2rem;
}

.check-registration {
    background: rgba(0, 40, 104, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid rgba(0, 40, 104, 0.1);
}

.check-registration p {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Video Player Styles */
.video-container {
    margin: 2rem 0;
    padding: 0 1rem;
}

.video-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8941f 100%);
    border: 4px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.video-play-btn i {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-left: 5px; /* Optical centering for play icon */
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(135deg, #f2cf00 0%, #a78519 100%);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.video-play-btn.is-playing {
    top: auto;
    left: auto;
    right: 1rem;
    bottom: 1rem;
    transform: none;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 40, 104, 0.72) 0%, rgba(0, 26, 74, 0.72) 100%);
    border-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(2px);
}

.video-play-btn.is-playing i {
    color: var(--white);
    margin-left: 0;
    font-size: 1.2rem;
}

.video-play-btn.is-playing:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(0, 26, 74, 0.9) 0%, rgba(0, 40, 104, 0.9) 100%);
}

.video-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn i {
        font-size: 1.4rem;
        margin-left: 4px;
    }

    .video-play-btn.is-playing {
        width: 48px;
        height: 48px;
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .video-play-btn.is-playing i {
        font-size: 1rem;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .video-play-btn {
        width: 50px;
        height: 50px;
    }

    .video-play-btn i {
        font-size: 1.2rem;
        margin-left: 3px;
    }

    .video-play-btn.is-playing {
        width: 44px;
        height: 44px;
        right: 0.6rem;
        bottom: 0.6rem;
    }

    .video-container {
        padding: 0;
    }

    .video-wrapper {
        border-radius: 10px;
    }
}

/* Donate Page Styles */
.donate-header {
    background: linear-gradient(rgba(0, 40, 104, 0.9), rgba(191, 10, 48, 0.8)),
                url('https://janiemarksberry.s3.us-east-2.amazonaws.com/DaviessCountyFlag.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: center;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.donate-header .banner h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.donate-header .banner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.back-link {
    margin-top: 1rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.donate-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.donation-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 40, 104, 0.1);
    overflow: hidden;
    position: relative;
}

.donation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-red));
}

.donation-container {
    padding: 3rem;
    text-align: center;
}

.donation-intro {
    margin-bottom: 2rem;
}

.donation-intro h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.donation-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-text);
    max-width: 600px;
    margin: 0 auto;
}

.donorbox-container {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.donation-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 40, 104, 0.1);
}

.donation-footer p {
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.donation-footer .social-links {
    margin-top: 1.5rem;
}

/* Mail Donation Box */
.mail-donation-box {
    background: linear-gradient(135deg, rgba(0, 40, 104, 0.03) 0%, rgba(0, 40, 104, 0.06) 100%);
    border: 1px solid rgba(0, 40, 104, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.mail-donation-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 1rem !important;
}

.mail-donation-title i {
    margin-right: 0.5rem;
}

.mail-donation-payee {
    font-size: 1rem;
    margin-bottom: 0.75rem !important;
}

.mail-donation-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 0 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--primary-blue) !important;
    margin-top: 1.5rem;
}

/* Animal Shelter Page Styles */
.animal-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* Shelter Navigation Buttons Section */
.shelter-nav-buttons {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow-light);
    border-top: 1px solid rgba(0, 40, 104, 0.1);
    border-bottom: 1px solid rgba(0, 40, 104, 0.1);
    margin: 4rem 0;
}

.animal-section {
    margin-bottom: 3rem;
}

.animal-section h2 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.animal-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
}

.animal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.problem-box {
    margin-bottom: 3rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
}

.problem-box h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.problem-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.animal-closing {
    margin-top: 3rem;
    text-align: center;
}

.animal-closing-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 600;
    color: #1e3a8a;
    margin-top: 2rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a4a 100%);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
    box-shadow: var(--shadow-medium);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 0.9rem;
}

/* Mobile/Desktop text switching for buttons */
.btn-text-mobile {
    display: none;
}

.btn-text-desktop {
    display: inline;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Show mobile text, hide desktop text */
    .btn-text-mobile {
        display: inline;
    }
    
    .btn-text-desktop {
        display: none;
    }

    /* Hide top navigation on shelter page on mobile */
    .shelter-top-nav {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 2rem;
    }




    #hero-title {
        font-size: 2rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .gallery-slider {
        height: 300px;
    }

    .placeholder-image i {
        font-size: 3rem;
    }

    .placeholder-image p {
        font-size: 1.1rem;
    }

    .gallery-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .platform-item {
        padding: 1.5rem;
    }

    .platform-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .platform-item h3 {
        font-size: 1.1rem;
    }

    #hero-title {
        margin-bottom: 2rem;
    }

    .profile-image {
        width: 80%;
        min-height: 240px;
        max-width: 80%;
        margin: -0.5rem auto 2rem;
    }

    .hero-video {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        margin: -0.5rem auto 2rem;
    }

    .hero-video-shell {
        max-width: 100%;
        margin: -0.5rem auto 2rem;
    }

    #hero-plan {
        padding: 1.5rem 2rem;
        margin: 1.5rem 0;
        font-size: 1.2rem;
        line-height: 1.7;
    }

    main {
        padding: 0.5rem 1rem 2rem;
    }

    .contact {
        padding: 2rem;
    }

    .donate-button {
        padding: 1.5rem 2rem;
        font-size: 0.9rem;
        width: 320px;
        white-space: normal;
        line-height: 1.3;
        text-align: center;
    }

    .registration-button {
        padding: 1.5rem 2rem;
        font-size: 0.9rem;
        width: 320px;
        white-space: normal;
        line-height: 1.3;
        text-align: center;
    }

    .podcast-button {
        padding: 1.5rem 2rem;
        font-size: 0.9rem;
        width: 320px;
        white-space: normal;
        line-height: 1.3;
        text-align: center;
    }

    .registration-button.primary,
    .registration-button.secondary {
        padding: 1.6rem 1.5rem;
        width: 240px;
        font-size: 0.7rem;
        white-space: normal;
        line-height: 1.3;
    }

    .donate-section {
        padding: 1rem 0;
    }

    .donate-container {
        padding: 0 1rem;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .donate-main {
        padding: 2rem 1rem;
    }

    .donation-container {
        padding: 2rem 1rem;
    }

    .donate-header .banner h1 {
        font-size: 2.2rem;
    }

    .donate-header .banner h2 {
        font-size: 1.1rem;
    }

    .donation-intro h2 {
        font-size: 1.8rem;
    }

    /* Registration Page Mobile Styles */
    .compact-banner h1 {
        font-size: 1.8rem;
    }

    .compact-banner p {
        font-size: 1rem;
    }

    .facebook-share-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .registration-content-section {
        padding: 2rem;
    }

    .photo-quote-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .profile-image-small {
        width: 250px;
        height: auto;
        max-height: 300px;
    }

    .registration-main {
        padding: 2rem 1rem;
    }

    .registration-links,
    .check-registration {
        padding: 1.5rem;
    }


    .important-notice {
        padding: 1.5rem;
    }

    .important-notice h3 {
        font-size: 1.1rem;
        padding-left: 2.5rem;
    }

    .important-notice::before {
        left: 1rem;
        font-size: 1.2rem;
    }

    /* Animal Shelter Page Mobile Styles */
    .animal-section h2 {
        font-size: 1.3rem;
    }

    .problem-box {
        padding: 1.5rem;
    }

    .problem-box h3 {
        font-size: 1.1rem;
    }

    .animal-text,
    .problem-box p {
        font-size: 1rem;
    }

    .animal-closing-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {


    #hero-title {
        font-size: 1.8rem;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    #hero-title {
        margin-bottom: 1.5rem;
    }

    .profile-image {
        width: 100%;
        min-height: 200px;
        max-width: 90%;
        margin: -0.25rem auto 1.5rem;
        content: url('media/hero-m.webp');
    }

    .hero-video {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        margin: -0.25rem auto 1.5rem;
    }

    .hero-video-shell {
        margin: -0.25rem auto 1.5rem;
    }

    #hero-plan {
        padding: 1rem 1.5rem;
        margin: 1rem 0;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .donate-header .banner h1 {
        font-size: 1.8rem;
    }

    .donate-header .banner h2 {
        font-size: 1rem;
    }

    .donation-intro h2 {
        font-size: 1.5rem;
    }

    .back-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Registration Page Small Mobile Styles */
    .compact-banner h1 {
        font-size: 1.5rem;
    }

    .compact-banner p {
        font-size: 0.9rem;
    }

    .facebook-share-link {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .registration-content-section {
        padding: 1.5rem;
    }

    .photo-quote-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .profile-image-small {
        width: 200px;
        height: auto;
        max-height: 250px;
    }

    .janie-quote p {
        font-size: 1rem;
    }

    .janie-quote p:first-child {
        font-size: 1.1rem;
    }


    .important-notice {
        padding: 1rem;
    }

    .important-notice h3 {
        font-size: 1rem;
        padding-left: 2rem;
    }

    .important-notice::before {
        left: 0.7rem;
        font-size: 1rem;
        top: 0.8rem;
    }

    /* Animal Shelter Page Small Mobile Styles */
    .animal-section h2 {
        font-size: 1.1rem;
    }

    .problem-box {
        padding: 1.25rem;
    }

    .problem-box h3 {
        font-size: 1rem;
    }

    .animal-text,
    .problem-box p {
        font-size: 0.95rem;
    }

    .animal-closing-text {
        font-size: 1rem;
    }

    .animal-image {
        margin: 1.5rem auto;
    }
}  