/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    --bg-main: #f8fafc;        /* Clean, light gray background */
    --bg-card: #ffffff;        /* Pure white for content blocks */
    --text-main: #0f172a;      /* Dark slate for high readability */
    --text-muted: #475569;     /* Medium gray for descriptions */
    --accent: #0f766e;         /* Deep Teal (Signals trust and security) */
    --accent-light: #ccfbf1;   /* Soft teal tint for highlights */
    --border-color: #e2e8f0;   /* Subtle divider color */
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    padding: 0 1rem;
}

/* ==========================================================================
   2. LAYOUT & CONTAINERS
   ========================================================================== */
header, main, footer {
    max-width: 750px;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 4rem 1rem 2rem 1rem;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

header p:first-of-type {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
}

header p:last-of-type {
    display: inline-block;
    background-color: var(--accent-light);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
}

/* ==========================================================================
   3. SECTIONS & CARDS
   ========================================================================== */
section {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-main);
    padding-bottom: 0.5rem;
}

/* Guarantee Section Callout */
#guarantee {
    background-color: #f0fdf4; /* Light success green */
    border-color: #bbf7d0;
}

#guarantee h2 {
    color: #166534;
    border-bottom-color: #dcfce7;
}

#guarantee p {
    color: #166534;
    font-weight: 500;
}

/* ==========================================================================
   4. SERVICES LIST (PRICING)
   ========================================================================== */
#services ul {
    list-style: none;
}

#services li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 0.5rem;
}

#services li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

#services h3 {
    grid-column: 1;
    font-size: 1.15rem;
    font-weight: 600;
}

#services p {
    grid-column: 1;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price {
    grid-column: 2;
    grid-row: 1 / 3;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    align-self: center;
}

.note {
    grid-column: 1 / 3;
    font-size: 0.8rem !important;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ==========================================================================
   5. CONTACT & BUTTONS
   ========================================================================== */
#contact {
    text-align: center;
}

#contact p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

#contact a {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

#contact a:hover {
    background-color: #115e59; /* Slightly darker teal on hover */
}

/* ==========================================================================
   6. FOOTER
   ========================================================================== */
footer {
    text-align: center;
    padding: 2rem 1rem 4rem 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   7. GOOGLE FORM EMBED STYLES
   ========================================================================== */
.form-container {
    width: 100%;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.form-container iframe {
    display: block;
    max-width: 100%;
}

.backup-contact {
    font-size: 0.95rem;
    margin-top: 1.5rem;
    font-weight: 500;
}
