body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7fafd;
    color: #0a2540;
}

header {
    background: linear-gradient(90deg, #0a2540 60%, #ffc107 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5vw;
    box-shadow: 0 2px 8px rgba(10,37,64,0.08);
}
.logo {
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffc107;
    background: #0a2540;
    padding: 0.7rem 2.2rem;
    border-radius: 0 0 28px 28px;
    margin-right: 2rem;
    box-shadow: 0 2px 8px rgba(10,37,64,0.10);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #ffc107;
}
.hero {
    background: linear-gradient(90deg, #0a2540 60%, #ffc107 100%);
    padding: 4rem 2vw 2rem 2vw;
    text-align: center;
    color: #fff;
    width: 100%;
}
.hero h1 {
    font-size: 2.3rem;
    margin-bottom: 1.2rem;
    color: #ffc107;
    font-weight: 700;
}
.hero-desc {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto;
}

/* Carousel Styles */
.services-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 2rem 0;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(10,37,64,0.04);
}
.services-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 2vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}
.services-carousel::-webkit-scrollbar {
    display: none;
}
.service-card {
    min-width: 260px;
    max-width: 340px;
    width: 100%;
    background: #f7fafd;
    border: 2px solid #ffc107;
    border-radius: 18px;
    padding: 2rem 1.2rem;
    box-shadow: 0 2px 12px rgba(10,37,64,0.08);
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    flex: 0 0 320px;
    color: #0a2540;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(10,37,64,0.16);
    border-color: #0a2540;
}
.service-card h3 {
    color: #0a2540;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.service-card p {
    color: #333;
    font-size: 1rem;
}
.carousel-arrow {
    background: #0a2540;
    color: #ffc107;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 0.5rem;
    box-shadow: 0 2px 8px rgba(10,37,64,0.12);
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
.carousel-arrow:hover {
    background: #ffc107;
    color: #0a2540;
}

section {
    padding: 2.5rem 2vw;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    margin: 0;
}
.about-section, .life-section, .work-section, .contact-section, .terms-section, .steps-section, .join-section {
    margin: 2rem 0;
    border-radius: 18px;
    box-shadow: 0 1px 8px rgba(10,37,64,0.06);
    background: #fff;
    width: 96vw;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 2.5rem 2vw;
}
.steps-section {
    background: linear-gradient(90deg, #fffbe7 60%, #e3e3ff 100%);
}
.steps-section h2 {
    color: #0a2540;
    margin-bottom: 2rem;
}
.steps-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.step-card {
    background: #e3e3ff;
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    min-width: 220px;
    max-width: 260px;
    flex: 1 1 220px;
    box-shadow: 0 1px 4px rgba(10,37,64,0.06);
    text-align: center;
}
.step-card.yellow .step-icon { color: #ffc107; font-size: 2.2rem; }
.step-card.red .step-icon { color: #e53935; font-size: 2.2rem; }
.step-card.blue .step-icon { color: #1976d2; font-size: 2.2rem; }
.step-card h4 { margin: 1rem 0 0.5rem 0; color: #0a2540; }

.join-section {
    background: linear-gradient(90deg, #0a2540 60%, #1976d2 100%);
    color: #fff;
    border-radius: 18px;
    margin: 2rem 0;
    padding: 2.5rem 2vw;
    max-width: 1400px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(10,37,64,0.08);
}
.join-section h2 { color: #ffc107; }
.join-btn {
    background: #ffc107;
    color: #0a2540;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1.2rem;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.12);
    transition: background 0.2s, color 0.2s;
}
.join-btn:hover {
    background: #0a2540;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.about-section h2, .life-section h2, .work-section h2 {
    color: #0a2540;
}
.contact-section h2 { color: #0a2540; }
.contact-list { list-style: none; padding: 0; margin: 1rem 0 0 0; }
.contact-list li { font-size: 1.1rem; margin: 0.5rem 0; }
.terms-section h2 { color: #0a2540; }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.7rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #0a2540;
    text-decoration: underline;
}
footer {
    background: #0a2540;
    color: #ffc107;
    text-align: center;
    padding: 1.2rem 0 0.5rem 0;
    margin-top: 2rem;
    font-size: 1.05rem;
    letter-spacing: 1px;
    border-radius: 16px 16px 0 0;
    width: 100vw;
}

@media (max-width: 900px) {
    .services-carousel {
        gap: 1rem;
        padding: 1.5rem 1vw;
    }
    .about-section, .life-section, .work-section, .contact-section, .terms-section, .steps-section, .join-section {
        width: 98vw;
        padding: 2rem 1vw;
    }
}
@media (max-width: 700px) {
    .steps-grid {
        flex-direction: column;
        gap: 1.2rem;
    }
    .footer-links {
        gap: 1rem;
    }
    .about-section, .life-section, .work-section, .contact-section, .terms-section, .steps-section, .join-section {
        width: 100vw;
        padding: 1.2rem 0.5vw;
    }
    .hero h1 {
        font-size: 1.3rem;
    }
} 