@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;500;600;700&family=Caveat:wght@400;500;600;700&display=swap');

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

:root {
    --primary: #D97706;
    --primary-light: #FBBF24;
    --primary-dark: #B45309;
    --secondary: #78350F;
    --secondary-dark: #451A03;
    --background: #FFFDF5;
    --background-muted: #FEF3C7;
    --text-dark: #1C1917;
    --text-muted: #57534E;
    --border: #E7E5E4;
    --white: #FFFFFF;
    --whatsapp: #25D366;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
}

.font-heading {
    font-family: 'Playfair Display', serif;
}

.font-accent {
    font-family: 'Caveat', cursive;
}

/* Honeycomb background pattern */
.honeycomb-bg {
    background-color: var(--background);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23d97706' fill-opacity='0.03'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px rgba(217, 119, 6, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--background-muted);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 253, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--background-muted);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.navbar-logo img {
    height: 56px;
    width: 56px;
    object-fit: contain;
}

.navbar-logo-text {
    display: none;
}

@media (min-width: 640px) {
    .navbar-logo-text {
        display: block;
    }
}

.navbar-logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.navbar-logo-text p {
    font-size: 0.75rem;
    color: var(--primary);
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navbar-links {
        display: flex;
    }
}

.navbar-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--primary);
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
    width: 100%;
}

.navbar-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .navbar-actions {
        display: flex;
    }
}

.navbar-actions .instagram {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.navbar-actions .instagram:hover {
    color: #E1306C;
}

/* Mobile menu */
.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--background-muted);
    padding: 1rem;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 0.5rem;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    background: var(--background-muted);
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 253, 245, 0.95) 0%, rgba(255, 253, 245, 0.7) 50%, transparent 100%);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: none;
}

@media (min-width: 1024px) {
    .hero-image {
        display: block;
    }
}

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

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--background-muted), transparent);
}

.hero-content {
    position: relative;
    max-width: 42rem;
    padding: 5rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-muted);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero p {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-value {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .accent {
    font-size: 1.5rem;
    color: var(--primary);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--background-muted);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(217, 119, 6, 0.2);
}

.product-card-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-category {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-card-content {
    padding: 1.25rem;
}

.product-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card-footer span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Board Members */
.board-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .board-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.member-card {
    background: linear-gradient(135deg, var(--background-muted) 0%, rgba(254, 243, 199, 0.5) 100%);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--background-muted);
    text-align: center;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: scale(1.02);
}

.member-avatar {
    width: 6rem;
    height: 6rem;
    background: var(--background-muted);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.member-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.member-card .role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.member-card .bio {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta-section .accent {
    font-size: 1.875rem;
    color: var(--background-muted);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 1rem 0 1.5rem;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 3rem;
    }
}

.cta-section p {
    color: var(--background-muted);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

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

.cta-buttons .btn-white:hover {
    background: var(--background);
}

.cta-buttons .btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    color: var(--background-muted);
}

.footer-wave {
    height: 4rem;
    background: var(--background);
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    padding: 3rem 0;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 4rem;
    width: 4rem;
    object-fit: contain;
    background: var(--white);
    border-radius: 50%;
    padding: 0.25rem;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-light);
}

.footer-logo p {
    font-size: 0.75rem;
    color: var(--primary);
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--background-muted);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: #E1306C;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--primary);
}

.footer-bottom .tagline {
    font-size: 1.25rem;
    color: var(--primary);
}

/* Page Headers */
.page-header {
    padding-top: 8rem;
    padding-bottom: 4rem;
    text-align: center;
}

.page-header .accent {
    font-size: 1.5rem;
    color: var(--primary);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin: 0.5rem 0 1rem;
}

@media (min-width: 768px) {
    .page-header h1 {
        font-size: 3rem;
    }
}

.page-header p {
    color: var(--text-muted);
    max-width: 42rem;
    margin: 0 auto;
}

/* Filter Bar */
.filter-bar {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--background-muted);
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .filter-bar {
        flex-direction: row;
        align-items: center;
    }
}

.search-box {
    position: relative;
    flex: 1;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid var(--background-muted);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary);
}

.search-box svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--background-muted);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Results count */
.results-count {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.results-count span {
    font-weight: 600;
    color: var(--primary);
}

/* About Page */
.about-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-logo {
    max-width: 24rem;
    margin: 0 auto;
}

.about-logo img {
    width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mission Cards */
.mission-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mission-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--background-muted);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.mission-card:hover {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

.mission-card .icon {
    width: 4rem;
    height: 4rem;
    background: var(--background-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.mission-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Support Page */
.donation-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .donation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.donation-card {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--background-muted);
    overflow: hidden;
}

.donation-card-header {
    padding: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.donation-card-header.pix {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.donation-card-header.bank {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.donation-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.donation-card-content {
    padding: 1.5rem;
}

.donation-field {
    margin-bottom: 1rem;
}

.donation-field label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.donation-field .value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--background-muted);
    padding: 1rem;
    border-radius: 0.5rem;
}

.donation-field .value p {
    font-weight: 500;
    color: var(--secondary);
    word-break: break-all;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.25rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--background-muted);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

.contact-card.whatsapp {
    background: #DCF8C6;
    border-color: #25D366;
}

.contact-card.instagram {
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
    border-color: #E1306C;
}

.contact-card .icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card.whatsapp .icon {
    background: var(--whatsapp);
    color: var(--white);
}

.contact-card.instagram .icon {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    color: var(--white);
}

.contact-card .icon.default {
    background: var(--background-muted);
    color: var(--primary);
}

.contact-card h3 {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.875rem;
}

.contact-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    border: 1px solid var(--background-muted);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .form-row.two-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--background-muted);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: none;
    min-height: 8rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-muted);
    border-radius: 1rem;
}

.stat-card .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-card .label {
    color: var(--text-muted);
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: var(--secondary);
    text-align: center;
}

.location-section svg {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.location-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .location-section h2 {
        font-size: 2.5rem;
    }
}

.location-section p {
    color: var(--background-muted);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

/* Why Support */
.why-support-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .why-support-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    text-align: center;
}

.why-card .emoji {
    width: 4rem;
    height: 4rem;
    background: var(--background-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Message Box */
.message-box {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--background-muted);
    text-align: center;
    margin-top: 3rem;
}

.message-box p {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Utilities */
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.bg-white { background: var(--white); }

/* SVG Icons inline */
.icon-svg {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}
