/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { line-height: 1.6; color: #334155; background-color: #f8fafc; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { color: #0f172a; } /* Deep Corporate Navy */

/* Navigation */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo { font-size: 26px; font-weight: 700; color: #1e3a8a; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links li a { font-weight: 600; color: #64748b; transition: color 0.3s ease; }
.nav-links li a:hover, .nav-links li a.active { color: #1e3a8a; }
.cta-btn {
    background-color: #1e3a8a; color: #ffffff !important; padding: 10px 20px;
    border-radius: 5px; transition: background 0.3s ease;
}
.cta-btn:hover { background-color: #152c6b; }

/* Page Headers (Hero) */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff; padding: 100px 5%; text-align: center;
}
.page-header h1 { font-size: 48px; color: #ffffff; margin-bottom: 20px; }
.page-header p { font-size: 20px; max-width: 800px; margin: 0 auto; font-weight: 300; }
.btn-primary {
    background-color: #ffffff; color: #1e3a8a; padding: 15px 30px; font-size: 18px;
    font-weight: 700; border-radius: 5px; display: inline-block; margin-top: 30px;
    transition: transform 0.3s ease;
}
.btn-primary:hover { transform: translateY(-3px); }

/* Main Content Containers */
.container { padding: 80px 5%; max-width: 1200px; margin: 0 auto; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-box p { margin-bottom: 20px; font-size: 17px; }

/* Services Grid */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px;
}
.service-card {
    background: #ffffff; padding: 40px 30px; border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-5px); }
.service-card h3 { color: #1e3a8a; margin-bottom: 15px; font-size: 22px; }

/* Contact Form */
.contact-wrapper { max-width: 600px; margin: 0 auto; background: white; padding: 40px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 5px; font-family: inherit;
}
.submit-btn { width: 100%; background: #1e3a8a; color: white; border: none; padding: 15px; font-size: 18px; border-radius: 5px; cursor: pointer; font-weight: 600; }

/* Footer */
footer { background-color: #0f172a; color: #f8fafc; padding: 60px 5%; text-align: center; }
footer h3 { color: white; margin-bottom: 15px; }
.contact-email { font-size: 24px; font-weight: 700; color: #60a5fa; display: block; margin: 20px 0; }