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

:root {
    --hero-bg: #5F69D6;
    --button-primary: #4F46E5;
    --button-secondary: #171717;
    --text-primary: #171717;
    --text-secondary: #666666;
    --footer-bg: #EDF2F7;
    --white: #ffffff;
    --light-bg: #F9FAFB;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 400;
}

  /* Typography */
        h1, h2, h3 {
            font-weight: 600;
            line-height: 1.3;
        }
        
        h1 {
            font-size: 48px;
            color: var(--text-primary);
        }
        
        h2 {
            font-size: 36px;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }
        
        h3 {
            font-size: 24px;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }
.container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero {
    background: var(--hero-bg) !important;
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 1200px;
    text-align: center;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -1px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    margin-bottom: 2.5rem;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
section {
    padding: 5rem 0;
}

section:nth-of-type(even) {
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
}

/* Left Layout Variant */
.layout-left .section-header {
    text-align: left;
    max-width: 100%;
    margin-left: 0;
}

.layout-left .steps-container,
.layout-left .faq-plain-container,
.layout-left .why-choose-grid,
.layout-left .content-block {
    margin-left: 0;
    max-width: 100%;
    text-align: left;
}

/* Content Blocks */
.content-block {
    margin-bottom: 2.5rem;
}

.content-block h3 {
    margin-bottom: 1rem;
    font-size: 24px;
}

.content-block p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Steps */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    margin-bottom: 2rem;
}

.step-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* Lists */
.content-list {
    margin-left: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-list li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}
/* =========================================
   FAQ (Plain Style)
   ========================================= */
.faq-plain-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-plain-item {
    margin-bottom: 2.5rem;
}

.faq-plain-item h3 {
    font-size: 18px;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.faq-plain-item p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* FAQ (Card Style - Optional) */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.why-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.why-icon {
    font-size: 32px;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: #f3f4f6;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container, nav {
        width: 92%;
    }

    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

header {
    background: var(--white);
    padding: 1.25rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--button-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    position: relative;
    font-size: 32px;
    padding: 8px;
    cursor: pointer;
    color: var(--text-primary);
}
footer {
    background: var(--footer-bg);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--button-primary);
}

.footer-bottom {
    border-top: 1px solid #d1d5db;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--button-primary);
}

@media (max-width: 768px) {
    .container, nav {
        width: 92%;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container, nav {
        width: 85%;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 14px;
    }
}

/* Utilities */
img[loading="lazy"] {
    background: #f3f4f6;
}

html {
    scroll-behavior: smooth;
}