/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; color: #333; background: #f9f9f9; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
a { text-decoration: none; }

/* Hero */
.hero { background: linear-gradient(135deg, #004a99, #0077cc); color: #fff; padding: 80px 0; text-align: center; }
.hero h1 { font-size: 3rem; letter-spacing: 1px; }
.hero p { font-size: 1.2rem; margin: 15px 0; }
.btn { display: inline-block; background: #ffbf00; color: #004a99; padding: 12px 30px; border-radius: 30px; font-weight: 600; transition: background .3s; }
.btn:hover { background: #e6ae00; }

/* Features Grid */
.features { padding: 60px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card { background: #fff; padding: 30px 20px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: transform .3s; }
.card h2 { margin-bottom: 10px; color: #004a99; }
.card p { font-size: .95rem; line-height: 1.5; }
.card:hover { transform: translateY(-5px); }

/* Contact Section */
.contact-section { background: #f0f4f8; padding: 80px 0; }
.contact-container { display: flex; justify-content: center; align-items: flex-start; gap: 50px; flex-wrap: wrap; }
.contact-info, .form-card { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.1); flex: 1 1 300px; }
.contact-info h2 { color: #004a99; margin-bottom: 20px; }
.contact-info p { margin-bottom: 10px; }
.contact-info a { color: #0077cc; }

/* Form Styles */
.form-card { display: flex; flex-direction: column; gap: 20px; }
.form-card label { font-weight: 600; margin-bottom: 5px; color: #004a99; }
.form-card input,
.form-card textarea { width: 100%; padding: 15px; border: 1px solid #ccc; border-radius: 8px; font-size: 1rem; transition: border-color .3s; }
.form-card input:focus,
.form-card textarea:focus { border-color: #0077cc; outline: none; }
.form-card button { align-self: flex-start; background: #004a99; color: #fff; padding: 12px 30px; border: none; border-radius: 30px; font-size: 1rem; cursor: pointer; transition: background .3s; }
.form-card button:hover { background: #003366; }
.feedback { text-align: center; margin-bottom: 20px; color: #0077cc; font-weight: 600; }

/* Footer */
footer { background: #222; color: #ccc; padding: 30px 0; }
.footer-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.footer-grid .logo { font-size: 1.4rem; color: #ffbf00; font-weight: bold; }
.footer-grid nav a { margin: 0 10px; color: #ccc; font-size: .9rem; }
.footer-grid .copy { font-size: .8rem; }
