/* Color Palette */
:root {
    --primary: #2563eb;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--text-main);
}

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

/* Nav */
.nav {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    font-weight: 800;
    text-decoration: none;
    color: var(--primary);
}

/* Hero */
.service-hero {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.8rem;
    margin: 0 0 15px;
}

.service-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Layout Grid */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 60px 0;
}

@media (min-width: 800px) {
    .content-wrapper {
        flex-direction: row;
    }

    .main-text {
        flex: 2;
    }

    .cta-box {
        flex: 1;
    }
}

/* Sidebar Box */
.cta-box {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    align-self: flex-start;
}

.btn-primary {
    display: block;
    background: var(--white);
    color: var(--primary);
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.03);
}

/* Lists & FAQ */
.check-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.check-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.faq-section {
    max-width: 600px;
    padding-bottom: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    text-align: center;
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.footer {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid #eee;
    color: var(--text-muted);
}