
/* Privacy Policy Styles */
.privacy-policy {
    text-align: left;
    max-width: 800px;
    margin: auto;
    padding: 4rem 2rem 2rem 2rem;
}

.privacy-content {
    line-height: 1.8;
    color: var(--primary-gray);
}

.privacy-content h1, .privacy-content h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.privacy-content a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.privacy-content a:hover {
    text-decoration: none;
}

.privacy-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Color Variables */
:root {
    --primary-yellow: #ffca28;
    --primary-blue: #00aed9;
    --primary-gray: #545454;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--primary-gray);
    background-color: var(--white);
}

/* Login Link Styles (now in navigation) */
.login-link {
    color: var(--white) !important;
    background-color: var(--primary-blue) !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.login-link:hover {
    background-color: var(--primary-yellow) !important;
    color: var(--dark-gray) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 202, 40, 0.3);
}

/* Main Header Styles */
.main-header {
    background-color: var(--light-gray);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    height: auto;
    min-height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 103px; /* 50% larger than previous 69px */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-shadow: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--primary-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 174, 217, 0.3);
}

/* Main Content */
main {
    margin-top: 90px; /* 90px main header */
}

section {
    padding: 4rem 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Home Section */
#home {
    background-color: var(--white);
    padding: 2rem 5%; /* Reduced from 4rem */
}

.hero-content {
    max-width: 1400px;
    text-align: center;
    padding: 3rem;
    background-color: rgba(255, 202, 40, 0.05);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 202, 40, 0.2);
}

#home h1 {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--primary-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-video {
    margin: 2rem 0;
    max-width: 1280px;
    width: 100%;
}

.hero-video iframe {
    width: 1280px;
    height: 720px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 174, 217, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 202, 40, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-donate {
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
    border: 2px solid var(--primary-yellow);
}

.btn-donate:hover {
    background-color: var(--white);
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 202, 40, 0.4);
}

/* Help Us Get Started Section */
#help-us-get-started {
    background-color: var(--white);
    padding: 4rem 5%;
    text-align: left;
}

.help-started-content {
    max-width: 1000px;
    margin: 0 auto;
}

#help-us-get-started h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.startup-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-gray);
}

.startup-message .opening {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.startup-message p {
    margin-bottom: 1.5rem;
}

.funding-goal {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-yellow);
}

.funding-goal h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.call-to-action {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    background-color: rgba(255, 202, 40, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.signature {
    text-align: right;
    margin-top: 2rem;
    font-style: italic;
}

.signature p {
    margin-bottom: 0.5rem;
}

.signature strong {
    color: var(--primary-blue);
}

/* Donation Page Styles */
#donation-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-yellow) 100%);
    color: white;
    padding: 6rem 5% 4rem;
    text-align: center;
}

.donation-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

#donation-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

#donation-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

#donation-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Donation Tiers */
#donation-tiers {
    background-color: var(--light-gray);
    padding: 4rem 5%;
}

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

#donation-tiers h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--primary-gray);
    margin-bottom: 3rem;
}

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

.donation-tier {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.donation-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.donation-tier.featured {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
}

.donation-tier.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-header {
    background: var(--primary-blue);
    color: white;
    padding: 1.2rem 1rem;
    text-align: center;
}

.donation-tier.featured .tier-header {
    background: var(--primary-yellow);
    color: var(--dark-gray);
}

.tier-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
}

.tier-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.tier-content {
    padding: 1.2rem 1rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tier-content p {
    color: var(--primary-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    flex-grow: 1;
}

.tier-btn {
    width: 100%;
    padding: 10px 16px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.tier-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

.donation-tier.featured .tier-btn {
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
}

.donation-tier.featured .tier-btn:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* One-Time Donation Section */
#one-time-donation {
    background-color: white;
    padding: 4rem 5%;
}

#one-time-donation h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.one-time-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.quick-amounts h3,
.custom-amount h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.amount-btn {
    padding: 15px 20px;
    background-color: var(--light-gray);
    color: var(--primary-gray);
    border: 2px solid var(--primary-gray);
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.selected {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.amount-input-group {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border-radius: 10px;
    padding: 5px;
    margin-top: 1rem;
}

.currency-symbol {
    padding: 10px 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-gray);
}

#custom-amount {
    flex: 1;
    padding: 15px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    outline: none;
}

.amount-input-group .btn {
    margin-left: 10px;
}

/* Payment Form */
#payment-form {
    background-color: var(--light-gray);
    padding: 4rem 5%;
}

#payment-form.hidden {
    display: none;
}

.payment-summary {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: left;
}

.payment-summary h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

#card-element {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

#card-errors {
    color: #fa755a;
    margin-bottom: 1rem;
}

#submit-payment {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Responsive Design for Donation Page */
@media (max-width: 768px) {
    #donation-hero h1 {
        font-size: 2.5rem;
    }
    
    .donation-tier-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-tier.featured {
        transform: none;
    }
    
    .donation-tier.featured:hover {
        transform: translateY(-5px);
    }
    
    .amount-buttons {
        grid-template-columns: 1fr;
    }
    
    .one-time-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* Donation Type Cards */
.donation-type-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.donation-type-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    max-width: 350px;
    border: 2px solid transparent;
    text-align: center;
}

.donation-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-content p {
    font-size: 1rem;
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
    flex-grow: 1;
}

.card-content a {
    margin-top: auto;
}

.featured-card {
    border-color: var(--primary-yellow);
    background: rgba(255, 202, 40, 0.05);
}

.featured-card .card-icon {
    color: var(--primary-yellow);
}

.featured-card:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 8px 20px rgba(255, 202, 40, 0.3);
}

/* Custom Donation Form Styles */
.custom-donation-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.custom-donation-form .form-group {
    margin-bottom: 1.5rem;
}

.custom-donation-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1rem;
}

.custom-donation-form input[type="text"],
.custom-donation-form input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--light-gray);
}

.custom-donation-form input[type="text"]:focus,
.custom-donation-form input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 5px rgba(0, 174, 217, 0.3);
    background: white;
}

.custom-donation-form .amount-input-group {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border-radius: 8px;
    border: 2px solid var(--light-gray);
    transition: border-color 0.3s ease;
}

.custom-donation-form .amount-input-group:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 5px rgba(0, 174, 217, 0.3);
    background: white;
}

.custom-donation-form .amount-input-group .currency-symbol {
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-gray);
}

.custom-donation-form .amount-input-group input {
    border: none;
    background: transparent;
    margin: 0;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--primary-blue);
}

.radio-option label {
    margin: 0 !important;
    font-weight: 500;
    color: #333333 !important;
    cursor: pointer;
    font-size: 1rem;
}

.radio-option input[type="radio"]:checked + label {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

.custom-donation-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
    padding: 15px;
    font-size: 1.1rem;
}

/* Responsive design for custom donation form */
@media (max-width: 768px) {
    .custom-donation-form {
        padding: 1.5rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Back to types button */
.back-to-types {
    margin-top: 3rem;
    text-align: center;
}

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

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

/* Hidden sections */
.hidden {
    display: none !important;
}

/* Responsive design for donation cards */
@media (max-width: 768px) {
    .donation-type-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .donation-type-card {
        max-width: 100%;
        width: 100%;
    }
    
    .custom-donation-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mission Section */
#our-mission {
    background-color: var(--light-gray);
    border-top: 4px solid var(--primary-blue);
}

#our-mission h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.mission-statement {
    font-size: 1.3rem;
    color: var(--primary-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    line-height: 1.8;
    font-style: italic;
}

.mission-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.pillar {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    width: 280px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-yellow);
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pillar h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.pillar p {
    color: var(--primary-gray);
    line-height: 1.6;
}

/* How You Can Help Section */
#how-you-can-help {
    background-color: var(--white);
    padding: 2rem 0;
}

#how-you-can-help h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.help-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.help-option {
    background-color: var(--light-gray);
    padding: 1.5rem;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.help-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.help-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.help-link:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Contact Section */
:root {
    --primary: var(--primary-blue);
    --dark: var(--primary-gray);
    --transition: all 0.3s ease;
}

.contact {
    background: var(--dark-gray);
    color: white;
    padding: 4rem 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact .section-title h2 {
    color: white;
}

.contact .section-title h2::after {
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    width: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    text-align: left;
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 24px;
}

.contact-form {
    background: var(--dark-gray);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    color: white;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.form-control {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: white;
    color: var(--dark-gray);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 5px rgba(0, 174, 217, 0.3);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer Styles */
footer {
    background: var(--light-gray);
    color: var(--primary-gray);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 5%;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--primary-blue);
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-blue);
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--primary-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gray);
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(84, 84, 84, 0.3);
    opacity: 0.7;
    font-size: 0.9rem;
    padding-left: 5%;
    padding-right: 5%;
}

.copyright p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-video iframe {
        width: 100%;
        max-width: 1280px;
    }
}

@media (max-width: 768px) {
    .hero-video iframe {
        width: 100%;
        height: 300px;
    }
    
    .hero-content {
        max-width: 95%;
        padding: 2rem;
    }
    
    .main-header {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }

    .logo {
        margin-bottom: 1rem;
    }
    
    .logo-img {
        height: 72px; /* 50% larger than previous 48px */
    }
    
    .logo-text {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }

    main {
        margin-top: 120px; /* Account for expanded mobile header */
    }

    #home h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 3rem 5%;
    }

    h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 0.5rem;
    }

    .logo-img {
        height: 63px; /* 50% larger than previous 42px */
    }
    
    .logo-text {
        font-size: 1.3rem;
    }

    nav ul {
        gap: 0.5rem;
    }

    nav a {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    main {
        margin-top: 130px; /* Account for even more expanded mobile header */
    }

    #home h1 {
        font-size: 2rem;
    }

    section {
        padding: 2rem 3%;
    }
}

/* Tracking Progress Page Styles */
#tracking-progress {
    background-color: var(--white);
    padding: 4rem 5% 2rem;
    min-height: auto;
}

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

#tracking-progress h1 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.progress-intro {
    font-size: 1.2rem;
    color: var(--primary-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    text-align: left;
}

.checklist-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.checklist-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

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

.checklist-number {
    background: var(--primary-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.checklist-item h2 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.checklist-item p {
    color: var(--primary-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.help-action {
    background: rgba(255, 202, 40, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
    font-size: 0.95rem;
    line-height: 1.5;
}

.help-action strong {
    color: var(--primary-blue);
}

.join-journey {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
}

.join-journey h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.join-journey p {
    color: var(--primary-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.scripture {
    font-style: italic;
    font-size: 1.2rem !important;
    color: var(--primary-blue) !important;
    margin-bottom: 2rem !important;
}

.gofundme-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

.gofundme-link:hover {
    color: var(--primary-yellow);
}

/* Responsive Design for Tracking Progress */
@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checklist-item {
        padding: 1.2rem;
    }
    
    .checklist-header {
        gap: 0.8rem;
    }
    
    .checklist-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .checklist-item h2 {
        font-size: 1.2rem;
    }
    
    .join-journey {
        padding: 2rem 1.5rem;
    }
    
    .join-journey h2 {
        font-size: 1.8rem;
    }
    
    #tracking-progress h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .checklist-item {
        padding: 1rem;
    }
    
    .help-action {
        padding: 0.8rem;
    }
    
    .join-journey {
        padding: 1.5rem 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
