
/* Reset and Base Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: #333; background-color: #f9f9f9; }
a { text-decoration: none; color: #004080; transition: color 0.3s ease; }
a:hover { color: #d4af37; }

/* Header and Navigation */
header { background-color: #0a1f44; color: #ffffff; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 4px solid #d4af37; flex-wrap: wrap; }
.logo a { display: flex; align-items: center; color: #fff; font-size: 24px; font-weight: bold; letter-spacing: 1px; }
.logo img { height: 70px; margin-right: 15px; background: #fff; padding: 5px; border-radius: 4px; }
nav { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 10px; }
nav a { color: #ffffff; font-size: 14px; font-weight: 600; text-transform: uppercase; }
nav a:hover, nav a.active { color: #d4af37; }

/* Hero Section */
.hero { background: linear-gradient(rgba(10, 31, 68, 0.8), rgba(10, 31, 68, 0.8)), url('hero-bg.jpg') center/cover; color: #fff; padding: 80px 20px; text-align: center; }
.hero h1 { font-size: 3em; margin-bottom: 10px; color: #d4af37; }
.hero p { font-size: 1.2em; max-width: 800px; margin: 0 auto 20px auto; }
.btn { display: inline-block; background: #d4af37; color: #0a1f44; padding: 12px 30px; font-size: 1.1em; font-weight: bold; border-radius: 4px; }
.btn:hover { background: #b8962e; color: #fff; }

/* Main Content Container */
.container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
h2 { color: #0a1f44; font-size: 2.2em; margin-bottom: 20px; border-bottom: 2px solid #d4af37; padding-bottom: 10px; display: inline-block; }
.section-desc { font-size: 1.1em; margin-bottom: 30px; color: #555; }

/* Grid & Cards */
.grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 25px; flex: 1 1 calc(33.333% - 40px); min-width: 280px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: transform 0.3s; border-top: 4px solid #0a1f44; }
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); }
.card h3 { color: #0a1f44; margin-bottom: 15px; font-size: 1.3em; }
.card ul { list-style-type: none; }
.card ul li { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 0.95em; }
.card ul li:last-child { border-bottom: none; }
.card ul li::before { content: '✓'; color: #d4af37; font-weight: bold; margin-right: 8px; }

/* Contact Specific */
.contact-grid { display: flex; gap: 40px; flex-wrap: wrap; }
.contact-info, .contact-form { flex: 1 1 45%; background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.contact-info p { margin-bottom: 15px; font-size: 1.1em; }
.contact-info strong { color: #0a1f44; }
input, textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; font-family: inherit; }
button { background: #0a1f44; color: #fff; padding: 12px 20px; border: none; font-size: 1.1em; cursor: pointer; border-radius: 4px; width: 100%; }
button:hover { background: #d4af37; color: #0a1f44; font-weight: bold; }

/* Footer */
footer { background: #051024; color: #b3b3b3; padding: 40px 20px; text-align: center; font-size: 0.9em; margin-top: 40px; }
footer .footer-content { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; text-align: left; margin-bottom: 20px; }
footer .footer-col { flex: 1 1 30%; min-width: 250px; }
footer h4 { color: #d4af37; margin-bottom: 15px; font-size: 1.2em; }
footer p { margin-bottom: 8px; }
footer a { color: #b3b3b3; }
footer a:hover { color: #fff; }
.copyright { border-top: 1px solid #333; padding-top: 20px; margin-top: 20px; }
