:root {
    --primary: #004aad;
    --secondary: #ff5722;
    --dark: #1a1a1a;
    --light: #f4f7f6;
    --white: #ffffff;
    --gray: #666;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Roboto, sans-serif; }

body { background: var(--light); color: var(--dark); line-height: 1.6; }

/* Header & Nav */
header { background: var(--white); padding: 1rem 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.logo img { height: 50px; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: var(--dark); font-weight: 600; transition: 0.3s; }
nav ul li a:hover { color: var(--primary); }

.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero { padding: 80px 5%; background: linear-gradient(rgba(0,74,173,0.8), rgba(0,74,173,0.8)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1350&q=80'); background-size: cover; color: white; text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; }
.cta-btn { background: var(--secondary); color: white; padding: 15px 35px; border: none; border-radius: 5px; font-size: 1.2rem; cursor: pointer; text-decoration: none; display: inline-block; transition: transform 0.2s; }
.cta-btn:hover { transform: scale(1.05); }

/* Grid Layouts */
.container { padding: 60px 5%; max-width: 1200px; margin: auto; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.card { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }

/* Footer */
footer { background: var(--dark); color: var(--white); padding: 40px 5% 20px; text-align: center; }
.footer-content { margin-bottom: 20px; font-size: 0.9rem; }
.disclaimer { font-size: 0.8rem; color: #888; margin-top: 20px; border-top: 1px solid #333; padding-top: 20px; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav ul { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    nav ul.active { display: flex; }
    nav ul li { margin: 10px 0; }
    .hero h1 { font-size: 2rem; }
}