/* Reset & Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Aptos', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background: #f9f9f9; 
    font-weight: 400;
}
h1, h2, h3 { font-weight: 300; }
h1 { font-weight: 300; }
strong { font-weight: 600; }

a { color: #0056b3; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
ul { list-style: none; }
li { margin-bottom: 16px; position: relative; padding-left: 24px; line-height: 1.5; }
li::before { content: "•"; color: #0056b3; position: absolute; left: 0; font-weight: bold; }
li strong { color: #003366; } /* Makes bold part before colon stand out */

/* Header & Navigation */
header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { font-size: 1.8rem; font-weight: 600; color: #0056b3; letter-spacing: 0.5px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 500; }
.mobile-menu { display: none; cursor: pointer; font-size: 1.8rem; }

/* Hero Section */
.hero { 
    background: linear-gradient(to right, #0056b3, #003366); 
    color: #fff; 
    text-align: center; 
    padding: 120px 0 140px; 
}
.hero h1 { font-size: 2.8rem; margin-bottom: 24px; }
.hero p { font-size: 1.25rem; max-width: 800px; margin: 0 auto 20px; }
.cta-button { 
    display: inline-block; 
    background: #fff; 
    color: #0056b3; 
    padding: 18px 40px; 
    border-radius: 4px; 
    font-weight: 600; 
    font-size: 1.1rem;
    transition: background 0.3s; 
    margin-top: 20px;
}
.cta-button:hover { background: #e6e6e6; }

/* Sections */
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 50px; color: #003366; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.service-card { 
    background: #fff; 
    padding: 40px 30px 30px; /* Extra top padding for gap after heading */
    border-radius: 8px; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.08); 
    transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-5px); }
.service-card h3 { font-size: 1.5rem; color: #0056b3; margin-bottom: 24px; } /* More space before bullets */

.why-me { background: #fff; }
.why-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

/* Bottom CTA */
.cta-section { 
    background: #0056b3; 
    color: #fff; 
    text-align: center; 
    padding: 80px 0;
}
.cta-section h2 { font-size: 2.6rem; margin-bottom: 20px; }
.cta-section p { max-width: 800px; margin: 0 auto 40px; font-size: 1.2rem; }
.cta-section .cta-button { padding: 18px 40px; font-size: 1.1rem; }

/* Footer */
footer { background: #333; color: #fff; text-align: center; padding: 40px 0; }
footer a { color: #fff; }

/* Contact Form */
form { 
    max-width: 600px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 40px; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}
label { display: block; margin-bottom: 8px; font-weight: 500; }
input, textarea { 
    width: 100%; 
    padding: 12px; 
    margin-bottom: 20px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
}
button { 
    background: #0056b3; 
    color: #fff; 
    padding: 14px 32px; 
    border: none; 
    border-radius: 4px; 
    font-weight: bold; 
    cursor: pointer; 
}
button:hover { background: #003366; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: #fff; 
        padding: 20px; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    }
    .nav-links.active { display: flex; }
    .mobile-menu { display: block; }
    .hero h1 { font-size: 2.3rem; }
    .hero { padding: 90px 0 110px; }
    .cta-section h2 { font-size: 2.2rem; }
}