:root {
    --primary-blue: #59B4DE;
    --primary-blue-hover: #4090BA;
    --light-blue: #E8F4FF;
    --text-dark: #1F2937;
    --text-gray: #4B5563;
    --text-light-gray: #6B7280;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-blue);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--light-blue);
}

.header-image {
    max-width: 100%;
    height: auto;
}

.hero {
    text-align: center;
    margin: 4rem 0;
}

h1 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    color: var(--primary-blue);
    font-size: 1.875rem;
}

.hero-description {
    color: var(--text-gray);
    font-size: 1.25rem;
    max-width: 42rem;
    margin: 1.5rem auto;
}

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

.content-box {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.phone-section {
    margin-bottom: 1.5rem;
}

.phone-link {
    font-family: monospace;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

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

.availability {
    color: var(--text-gray);
}

.pricing {
    color: var(--text-gray);
    margin-top: 1rem;
}

.scripture-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-blue);
    border-left: 2px solid var(--light-blue);
    padding-left: 1rem;
    margin: 1rem 0;
}

.scripture-source {
    font-size: 0.875rem;
    color: var(--text-light-gray);
}

.donate-button {
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    display: block;
    width: calc(100% - 4rem); /* Adjust for padding to fit inside */
    margin: 0 auto;
    text-decoration: none;
    box-sizing: border-box; /* Ensures padding is part of the width */
}

.donate-button:hover {
    background-color: #4aa8d9; /* Slightly darker blue */
    color: white;
    transition: background-color 0.3s ease;
}

footer {
    border-top: 1px solid var(--light-blue);
    margin-top: 4rem;
    padding-top: 2rem;
}

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

.footer-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.footer-text {
    color: var(--text-gray);
}

.footer-link {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.copyright {
    text-align: center;
    color: var(--text-light-gray);
    font-size: 0.875rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-blue);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }

    .phone-link {
        font-size: 1.75rem;
    }
}
