* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #182c48;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: rgba(203, 178, 106, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
    display: block;
}

.hero-section {
    background: rgba(203, 178, 106, 0.95);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: -1px;
}

.welcome-text {
    color: #182c48;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-statement {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: rgba(24, 44, 72, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #182c48;
}

.pastor-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 30px auto 0 auto;
    text-align: left;
}

.scripture-section {
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.scripture-text {
    text-align: center;
    color: #555;
    line-height: 1.8;
}

.scripture-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.scripture-text strong {
    color: #182c48;
    font-weight: 600;
}

.scripture-text blockquote {
    font-style: italic;
    font-size: 1.15rem;
    color: #182c48;
    background: rgba(203, 178, 106, 0.2);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #cbb26a;
    margin: 25px 0;
    position: relative;
}

.scripture-text blockquote:before {
    content: '"';
    font-size: 3rem;
    color: #cbb26a;
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: serif;
}

.scripture-text blockquote:after {
    content: '"';
    font-size: 3rem;
    color: #cbb26a;
    position: absolute;
    bottom: -30px;
    right: 15px;
    font-family: serif;
}

.highlight-box {
    background: linear-gradient(135deg, #182c48, #0f1a2a);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.highlight-box h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.highlight-box p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.ministry-image {
    margin-top: 30px;
    text-align: center;
}

.ministry-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ministry-img:hover {
    transform: scale(1.02);
}

footer {
    background: rgba(203, 178, 106, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #555;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-email {
    font-size: 1.1rem;
    font-weight: 600;
    color: #182c48;
    margin-bottom: 15px;
}

.contact-email a {
    color: #182c48;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #0f1a2a;
}

.address {
    font-size: 0.95rem;
    color: #666;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .hero-section {
        padding: 40px 25px;
    }

    h1 {
        font-size: 2rem;
    }

    .mission-statement {
        padding: 20px;
        font-size: 1.1rem;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}