/* --- GLOBAL STYLES --- */
body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    margin: 0; 
    background-color: #f4f7f6; 
    color: #333; 
    line-height: 1.5;
}

.container { 
    max-width: 1200px; /* Spread out like Workers.dev */
    margin: 0 auto; 
    padding: 0 30px; 
}

/* --- HEADER --- */
.site-header { 
    background: #fff; 
    padding: 22px 0; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); 
}

.brand-logo { 
    font-size: 24px; 
    font-weight: 800; 
    color: #111; 
    text-decoration: none;
    letter-spacing: -0.8px;
}

.brand-logo span { 
    color: #0070f3; 
    font-weight: 900;
}

/* --- HERO SECTION --- */
.hero-section { padding: 70px 0; }
.hero-grid { 
    display: grid; 
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 80px; /* Increased gap for that "spread out" look */
    align-items: start; 
}

.hero-text h1 { 
    font-size: 38px; /* Precise Workers.dev sizing */
    line-height: 1.1; 
    margin: 0 0 25px; 
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.1rem; 
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-image { 
    width: 100%; 
    border-radius: 12px; 
    margin: 20px 0; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

/* --- TRUST LIST (The "Greener" Green) --- */
.trust-list { list-style: none; padding: 0; margin-top: 30px; }
.trust-list li {
    font-size: 18px; 
    font-weight: 700; 
    color: #21ba45; /* Vibrant green checkmarks */
    margin-bottom: 15px;
}

/* --- FORM CONTAINER (The Workers.dev Card) --- */
.form-container { 
    background: #fff; 
    padding: 40px; 
    border-radius: 12px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
    border-top: 6px solid #0070f3; 
}

.form-header h3 { margin: 0 0 8px 0; font-size: 22px; font-weight: 800; }
.form-header p { margin: 0 0 25px 0; color: #666; font-size: 14px; }

label { display: block; margin: 18px 0 8px; font-weight: 700; font-size: 15px; }

input, select { 
    width: 100% !important; 
    padding: 15px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    font-size: 16px; 
    box-sizing: border-box; 
    background-color: #fcfcfc;
    margin-bottom: 5px;
}

.next-btn, .submit-btn { 
    width: 100%; 
    background: #28a745; 
    color: #fff; 
    border: none; 
    padding: 18px; 
    font-size: 18px; 
    font-weight: 800; 
    border-radius: 8px; 
    cursor: pointer; 
    margin-top: 25px; 
    transition: transform 0.1s ease;
}

/* --- FAQ & FOOTER --- */
.faq-section { padding: 80px 0; background: #f9f9f9; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 32px; font-weight: 800; }
.faq-grid { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-card { background: white; padding: 30px; border-radius: 10px; border-left: 6px solid #0070f3; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }

.local-content { padding: 80px 0; font-size: 1.15rem; color: #444; }
.site-footer { padding: 50px 0; text-align: center; border-top: 1px solid #eee; background: #fff; }

@media (max-width: 1000px) { 
    .hero-grid { grid-template-columns: 1fr; gap: 40px; } 
    .hero-text h1 { font-size: 32px; }
}
/* --- PLAIN PAGE STYLING --- */
.plain-content {
    padding: 80px 0;
    min-height: 60vh;
}

.plain-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.plain-content hr {
    border: 0;
    border-top: 2px solid #0070f3;
    width: 50px;
    margin: 0 0 40px 0;
}

.plain-content h2, .plain-content h3 {
    margin-top: 40px;
    color: #111;
}

.plain-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px; /* Keeps text from stretching too far across the screen */
}