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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 50%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
}

nav a:hover, nav a.active {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8)), 
                url('lifted.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 150px 20px 100px;
    margin-top: 70px;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.tagline {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.scripture {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #ffd700;
    color: #1a1a2e;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
}

/* Welcome Section */
.welcome {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.welcome h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
    font-size: 2rem;
}

.welcome p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background: white;
}

.services h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.service-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 120px 20px 60px;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #ffd700;
}

/* About Content */
.about-content {
    padding: 60px 20px;
    background: #f9f9f9;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    color: #1a1a2e;
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-text li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Contact Content */
.contact-content {
    padding: 60px 20px;
    background: #f9f9f9;
}

.contact-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-info h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.contact-item a {
    color: #16213e;
    text-decoration: none;
}

.contact-item a:hover {
    color: #ffd700;
}

.visit-us {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border-radius: 10px;
}

.visit-us h2 {
    color: #ffd700;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 180px 20px 80px;
    }
}

.location {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.location h2 {
    margin-bottom: 0.5rem;
}

.location-address {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}