/* Base Styles */
:root {
    --primary-blue: #2563eb;
    --dark-text: #1f2937;
    --light-bg: #f9fafb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    margin: 0;
    background-color: #fff;
}

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

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

.logo {
    font-weight: bold;
    text-decoration: none;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

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

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Layout Wrapper */
.content-wrapper {
    display: flex;
    flex-direction: column;
    /* Stack on mobile */
    gap: 40px;
    padding: 40px 0;
}

@media (min-width: 768px) {
    .content-wrapper {
        flex-direction: row;
        /* Side-by-side on desktop */
    }

    .main-text {
        flex: 2;
    }

    .cta-box {
        flex: 1;
    }
}

/* Sidebar CTA */
.cta-box {
    background: var(--primary-blue);
    color: white;
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
}

/* Typography & Lists */
h2 {
    font-size: 1.8rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* FAQ Section */
.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 {
    margin-bottom: 25px;
}

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

.footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
    color: #6b7280;
}