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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.section-header.light h2 {
    color: white;
}

.section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #c8102e, #1e40af);
    margin: 0 auto;
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a2e;
    text-decoration: none;
}

.nav-logo-img {
    height: 65px;
    width: auto;
    border-radius: 4px;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
}

.nav-menu a {
    text-decoration: none;
    color: #4a4a6a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #1e40af;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c8102e;
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: #1a1a2e;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1e40af 100%);
    color: white;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    background: rgba(200, 16, 46, 0.2);
    border: 1px solid rgba(200, 16, 46, 0.4);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.15s;
    animation-fill-mode: both;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    line-height: 1.7;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.3s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.45s;
    animation-fill-mode: both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #c8102e;
    color: white;
}

.btn-primary:hover {
    background: #a50d26;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.35);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: white;
    color: #1a1a2e;
    border-color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 44px;
    font-size: 1.05rem;
}

/* About / Introduction Section */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a6a;
    line-height: 1.85;
}

.about-fundamentals {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid #c8102e;
}

.about-fundamentals h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.fundamentals-list {
    list-style: none;
}

.fundamentals-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.fundamentals-list li i {
    color: #c8102e;
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 1rem;
}

.fundamentals-list li span {
    color: #4a4a6a;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Vision, Mission, Values Section */
.vision-mission {
    padding: 100px 0;
    background: #f8fafc;
}

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

.vmv-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.vision-card::before { background: #c8102e; }
.mission-card::before { background: #1e40af; }
.values-card::before { background: linear-gradient(90deg, #c8102e, #1e40af); }

.vmv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f0f4ff, #e8ecf8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vmv-icon i {
    font-size: 1.8rem;
    color: #1e40af;
}

.vmv-card h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vmv-card p {
    color: #4a4a6a;
    line-height: 1.7;
    font-size: 1.05rem;
}

.values-list {
    list-style: none;
    text-align: left;
}

.values-list li {
    padding: 0.5rem 0;
    color: #4a4a6a;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-list li i {
    color: #c8102e;
    font-size: 0.7rem;
}

/* What Drives Us Section */
.drives-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.drive-item {
    background: #f8fafc;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.drive-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #c8102e;
}

.drive-number {
    font-size: 2rem;
    font-weight: 800;
    color: #c8102e;
    opacity: 0.3;
    flex-shrink: 0;
    line-height: 1;
    min-width: 40px;
}

.drive-item p {
    color: #4a4a6a;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Strategic Focus Section */
.strategy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1e40af 100%);
    color: white;
}

.strategy-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.14);
}

.strategy-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1.5rem;
    background: rgba(200, 16, 46, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategy-icon i {
    font-size: 1.6rem;
    color: #f87171;
}

.strategy-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.strategy-card p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Board Members Section */
.board-section {
    padding: 100px 0;
    background: #f8fafc;
}

.board-member {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    align-items: flex-start;
    transition: box-shadow 0.3s ease;
}

.board-member:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.board-member.reverse {
    flex-direction: row-reverse;
}

.member-photo {
    flex-shrink: 0;
}

.member-photo-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.photo-placeholder {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder i {
    font-size: 3.5rem;
    color: #94a3b8;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.member-title {
    color: #c8102e;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-bio p {
    color: #4a4a6a;
    line-height: 1.75;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.member-education {
    background: #f8fafc;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 3px solid #1e40af;
    font-size: 0.9rem !important;
}

/* Donate Section */
.donate {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1e40af 100%);
    color: white;
}

.donate-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.donate-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: #333;
}

.donate-form h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    padding: 14px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: #c8102e;
    background: #c8102e;
    color: white;
}

.custom-amount {
    margin-bottom: 1.5rem;
}

.custom-amount label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.custom-amount input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.custom-amount input:focus {
    outline: none;
    border-color: #1e40af;
}

.donation-type {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.donation-type label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.campaign-select {
    margin-bottom: 1.5rem;
}

.campaign-select label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.campaign-select select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.donor-info h4,
.payment-method h4 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: #1a1a2e;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.donor-info input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
}

.donor-info input:focus {
    outline: none;
    border-color: #1e40af;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.payment-option:hover {
    border-color: #1e40af;
}

.payment-option input {
    margin-bottom: 0.5rem;
}

.payment-option i {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 0.4rem;
}

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

.info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: 12px;
    color: white;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.4rem 0;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f87171;
    font-weight: bold;
}

.info-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-info > h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    border-color: #c8102e;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-card-header i {
    font-size: 2rem;
    color: #1e40af;
}

.contact-card-header h4 {
    font-size: 1.15rem;
    color: #1a1a2e;
    margin-bottom: 0.15rem;
}

.contact-role {
    color: #c8102e;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #4a4a6a;
    font-size: 0.95rem;
}

.contact-details i {
    color: #1e40af;
    width: 18px;
    text-align: center;
}

.contact-details a {
    color: #1e40af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #c8102e;
}

.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
}

.contact-form h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e40af;
}

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

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

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

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #f87171;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #1e293b;
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c8102e;
    color: white;
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #334155;
    background: #1e293b;
    border-radius: 6px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    padding: 10px 18px;
    background: #c8102e;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #a50d26;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    color: #64748b;
    font-size: 0.9rem;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(25px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vmv-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu li {
        padding: 0.75rem 0;
    }

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

    .hero {
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-grid,
    .donate-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .board-member,
    .board-member.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

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

    .amount-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .donation-type {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .amount-options {
        grid-template-columns: 1fr;
    }

    .photo-placeholder {
        width: 110px;
        height: 110px;
    }
}
