/* ============================================
   MODERN DESIGN SYSTEM - FUR FUN RESCUE
   ============================================ */

/* CSS Variables - Modern Color Palette */
:root {
    /* Primary Colors */
    --primary: #008390;
    --primary-dark: #005f68;
    --primary-light: #00d2e6;
    --primary-hover: #0099a6;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #161616;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 0.75rem;   /* 12px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 6rem;    /* 96px */
    
    /* Typography Scale */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.375rem;  /* 6px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container System */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: 800px;
}

.container-wide {
    max-width: 1400px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: var(--space-sm) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.promo-banner a {
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-fast);
}

.promo-banner a:hover {
    transform: translateY(-1px);
    color: var(--white);
}

/* Modern Header */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-base);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    gap: var(--space-lg);
}

.logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xs);
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary);
    transition: transform var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--gray-50);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Menu Toggle */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.nav-mobile-toggle:hover {
    background: var(--gray-100);
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.nav-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: opacity var(--transition-base);
}

.hero-link:hover {
    opacity: 0.95;
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/hero-image.jpg') center/cover;
    overflow: hidden;
    padding: var(--space-4xl) var(--space-lg);
    transition: transform var(--transition-base);
}

.hero-link:hover .hero {
    transform: scale(1.01);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-content h1 {
    color: var(--white);
    font-size: var(--text-6xl);
    margin-bottom: var(--space-lg);
    text-shadow: 0 3px 25px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 0.8s ease-out;
    font-weight: 700;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-background {
    display: none;
}

/* Section Styles */
section {
    padding: var(--space-4xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title h2 {
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.section-title p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Card Components */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.adoption-platform-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.adoption-platform-card a {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.adoption-platform-card img {
    width: 100%;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.adoption-platform-card > a > div {
    flex-shrink: 0;
    margin-top: auto;
}

.adoption-platform-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.adoption-platform-card a:hover div {
    background: var(--primary-hover);
}

.card-title {
    font-size: var(--text-2xl);
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

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

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

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
}

/* Donation Section */
.donation-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.donation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.donation-text {
    text-align: left;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.donation-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.btn-donate {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--white);
    color: var(--text-primary);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    min-height: 64px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-donate img {
    width: 32px;
    height: 32px;
}

.paypal-badges {
    max-width: 200px;
    height: auto;
    opacity: 0.8;
}

/* Application Cards */
.applications-section {
    background: var(--white);
}

.application-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 700px;
    margin: 0 auto;
}

.application-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    font-size: var(--text-xl);
    font-weight: 700;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: var(--shadow-lg);
}

.application-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: var(--space-3xl) 0;
}

.stats-section h2 {
    color: var(--white);
    font-size: var(--text-4xl);
    margin: 0;
}

.stats-section p {
    color: var(--white) !important;
}

/* Social Section */
.social-section {
    background: var(--gray-50);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-lg);
    color: var(--primary);
}

/* Content Sections */
.content-section {
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.content-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.content-image:hover img {
    transform: scale(1.05);
}

.content-text h2 {
    color: var(--primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-text p {
    font-size: var(--text-lg);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

/* Contact Section */
.contact-section {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: var(--text-base);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 131, 144, 0.1);
}

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

.contact-info {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.contact-info p {
    margin-bottom: var(--space-md);
}

/* Page Content */
.page-content {
    background: var(--white);
    padding: var(--space-4xl) 0;
}

.page-content h1 {
    text-align: center;
    color: var(--primary);
    margin-bottom: var(--space-3xl);
}

.page-content h2 {
    color: var(--primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
}

.page-content ul,
.page-content ol {
    margin-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.page-content li {
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-content p {
    color: var(--gray-400);
    margin: 0;
    font-size: var(--text-sm);
}

.footer-content p a {
    transition: opacity var(--transition-base);
}

.footer-content p a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: var(--text-5xl);
    }
    
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: var(--shadow-lg);
        gap: var(--space-sm);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    section {
        padding: var(--space-3xl) 0;
    }
    
    .hero {
        min-height: 60vh;
        padding: var(--space-3xl) var(--space-md);
        background-position: left bottom;
        background-size: cover;
    }
    
    .hero-content h1 {
        font-size: var(--text-4xl);
    }
    
    .section-title h2 {
        font-size: var(--text-3xl);
    }
    
    .application-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        background-position: left 80%;
        background-size: cover;
    }
    
    .hero-content h1 {
        font-size: var(--text-3xl);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .card {
        padding: var(--space-lg);
    }
}

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

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

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

/* Gallery Styles */
.gallery-section {
    background: var(--white);
    padding: var(--space-4xl) 0 var(--space-3xl);
    margin-top: 0;
}

.gallery-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.gallery-title h2 {
    color: var(--primary);
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.gallery-main {
    position: relative;
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--gray-100);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out;
    animation: fadeInImage 0.5s ease-in-out;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    color: var(--primary);
    font-size: var(--text-xl);
    font-weight: bold;
}

.gallery-nav-button:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.gallery-nav-button.prev {
    left: var(--space-lg);
}

.gallery-nav-button.next {
    right: var(--space-lg);
}

.gallery-nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-nav-button:disabled:hover {
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
}

.gallery-thumbnails {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    padding: var(--space-md) 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 8px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

.gallery-thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
}

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

.gallery-thumbnail:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.gallery-thumbnail.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.gallery-thumbnail.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--white);
    border-radius: var(--radius-md);
    pointer-events: none;
}

@media (max-width: 768px) {
    .gallery-main {
        min-height: 400px;
    }
    
    .gallery-nav-button {
        width: 40px;
        height: 40px;
        font-size: var(--text-lg);
    }
    
    .gallery-nav-button.prev {
        left: var(--space-sm);
    }
    
    .gallery-nav-button.next {
        right: var(--space-sm);
    }
    
    .gallery-thumbnail {
        width: 100px;
        height: 100px;
    }
    
    .gallery-title h2 {
        font-size: var(--text-3xl);
    }
    
    /* Responsive styling for "Adoption saves lives" focal heading */
    .adoption-focal-heading {
        font-size: var(--text-3xl) !important;
    }
    
    /* Foster page responsive adjustments */
    .content-grid {
        flex-direction: column;
    }
    
    .content-grid img {
        max-width: 100% !important;
        margin-top: var(--space-xl);
    }
}

