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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    color: #0077b6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Hero section */
.hero {
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 80%;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #0077b6;
    color: #fff;
}

.btn-primary:hover {
    background-color: #005f8a;
}

.btn-secondary {
    background-color: #023e8a;
    color: #fff;
    border: none;
}

.btn-secondary:hover {
    background-color: #012d63;
}

/* Section headings */
section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #023e8a;
}

/* About section */
.about {
    background-color: #fff;
    padding: 3rem 0;
}

.about p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Services section */
.services {
    background-color: #e9f5fc;
    padding: 3rem 0;
}

.service-list {
    list-style: none;
    padding-left: 0;
    font-size: 1rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: #0077b6;
    font-size: 1.5rem;
    line-height: 1;
}

/* Scripture section */
.scripture {
    background-color: #fff;
    padding: 3rem 0;
}

.verse-list {
    list-style: none;
    padding-left: 0;
}

.verse-list li {
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Contact section */
.contact {
    background-color: #e9f5fc;
    padding: 3rem 0;
}

/* Support section */
.support {
    background-color: #e9f5fc;
    padding: 3rem 0;
}

.support ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info, .contact-form {
    flex: 1 1 300px;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info em {
    font-size: 0.9rem;
    color: #555;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-form input, .contact-form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 1rem;
    align-self: flex-start;
}

/* Mission section */
.mission {
    background-color: #fff;
    padding: 3rem 0;
    text-align: center;
}
.mission .lead {
    margin-top: 1rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

/* Scripture categories within Healing Scriptures */
.scripture-category {
    margin-bottom: 2rem;
}
.scripture-category h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #023e8a;
}
.scripture-category ul {
    list-style: none;
    padding-left: 0;
}
.scripture-category ul li {
    margin-bottom: 0.5rem;
}

/* Testimonials section */
.testimonials {
    background-color: #fff;
    padding: 3rem 0;
}
.testimonials blockquote {
    background-color: #f9f9f9;
    border-left: 4px solid #ccc;
    margin: 1rem 0;
    padding: 1rem 1.5rem;
    font-style: italic;
}
.testimonials blockquote footer {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}
.testimonials form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}
.testimonials form label {
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.testimonials form input,
.testimonials form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
.testimonials form textarea {
    resize: vertical;
}
.testimonials form button {
    margin-top: 1rem;
    align-self: flex-start;
}

/* Hidden honeypot field */
.hidden {
    display: none;
}

/* Footer */
.footer {
    background-color: #023e8a;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .contact-grid {
        flex-direction: column;
    }
}