body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7fafc;
    color: #222;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3vw;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo {
    height: 140px;
    max-width: 100%;
}
nav a {
    margin-left: 2rem;
    text-decoration: none;
    color: #007b8a;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #005f66;
}
.hero {
    text-align: center;
    padding: 4rem 2vw 2rem 2vw;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}
.cta-btn {
    background: #007b8a;
    color: #fff;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #005f66;
}
.pricing-section {
    padding: 3rem 2vw;
    background: #fff;
    text-align: center;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.card {
    background: #e0f7fa;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 300px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.card p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}
.card form {
    margin-bottom: 0.5rem;
}
.card button, .contact-btn {
    background: #007b8a;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 0.3rem;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}
.card button:hover, .contact-btn:hover {
    background: #005f66;
}
.contact-section {
    padding: 3rem 2vw;
    background: #f7fafc;
    text-align: center;
}
.contact-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}
.contact-section input, .contact-section textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #b2ebf2;
    border-radius: 8px;
    font-size: 1rem;
    resize: none;
}
.contact-section button {
    background: #007b8a;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.7rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-section button:hover {
    background: #005f66;
}
.success {
    color: #2e7d32;
    margin-top: 1rem;
}
.error {
    color: #c62828;
    margin-top: 1rem;
}
footer {
    background: #fff;
    text-align: center;
    padding: 1.5rem 2vw;
    font-size: 1rem;
    color: #888;
    border-top: 1px solid #e0e0e0;
    margin-top: 2rem;
}
footer a {
    color: #007b8a;
    text-decoration: none;
    margin-left: 1rem;
}
@media (max-width: 800px) {
    .cards {
        flex-direction: column;
        gap: 1.5rem;
    }
    .card {
        max-width: 90vw;
    }
}
@media (max-width: 600px) {
    .logo {
        height: 90px;
    }
    header {
        flex-direction: column;
        padding: 1rem 2vw;
        gap: 1rem;
    }
    nav {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav a {
        margin-left: 0;
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
        white-space: nowrap;
    }
}
.verse-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    padding: 2.5rem 2vw 2rem 2vw;
    margin-bottom: 0;
}
.verse-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 2rem 2.5rem;
    max-width: 600px;
    text-align: center;
    border-left: 6px solid #007b8a;
}
.verse-card h2 {
    color: #007b8a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.verse-card blockquote {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
    font-style: italic;
    line-height: 1.6;
}
.verse-text {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 500;
}
.verse-ref {
    display: block;
    color: #007b8a;
    font-size: 1.05rem;
    font-style: normal;
    margin-top: 0.2rem;
}
