/* Base Styles */
* { box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; margin: 0; line-height: 1.6; color: #333; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: white; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.logo { font-size: 1.5rem; font-weight: 800; color: #0056b3; }
.logo span { color: #00d4ff; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 30px; }
.nav-links a { text-decoration: none; color: #444; font-weight: 600; }
.btn-nav { background: #0056b3; color: white !important; padding: 10px 20px; border-radius: 5px; }

/* Sections */
.hero { padding: 100px 0; background: linear-gradient(rgba(0,86,179,0.05), #fff); text-align: center; }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; color: #1a1a1a; }
.subtitle { font-size: 1.2rem; color: #666; max-width: 700px; margin: 0 auto 40px; }
.section { padding: 80px 0; }
.section-gray { padding: 80px 0; background: #f9fbfd; }
.section-dark { padding: 80px 0; background: #1a2a3a; color: white; }
.section-title { font-size: 2rem; margin-bottom: 50px; text-align: center; }

/* Grid & Cards */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; padding: 40px; border-radius: 12px; border: 1px solid #eee; transition: 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* Process Steps */
.process-steps { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.step { flex: 1; min-width: 250px; padding: 20px; }
.step-num { width: 50px; height: 50px; background: #0056b3; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: bold; font-size: 1.2rem; }

/* Form Container */
.form-container { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.form-text { flex: 1; min-width: 300px; }
.form-card { flex: 1; min-width: 300px; background: white; padding: 30px; border-radius: 10px; color: #333; }
.check-list { list-style: none; padding: 0; margin-top: 20px; }
.check-list li { margin-bottom: 10px; font-weight: 500; }

/* Buttons & Inputs */
.btn-primary { background: #0056b3; color: white; padding: 18px 40px; text-decoration: none; border-radius: 8px; font-weight: bold; font-size: 1.1rem; display: inline-block; }
.input-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; font-weight: 600; }
input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; }
.btn-submit { width: 100%; background: #00d4ff; border: none; padding: 15px; border-radius: 6px; font-weight: bold; font-size: 1.1rem; cursor: pointer; color: #1a2a3a; }

/* Footer */
.footer { text-align: center; padding: 40px; background: #f1f1f1; font-size: 0.9rem; color: #777; }