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

/* Navigation */
.navbar { background: #fff; height: 80px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.5rem; text-decoration: none; color: #0056b3; }
.logo span { color: #f39c12; }
.nav-links { display: flex; list-style: none; gap: 20px; align-items: center; }
.nav-links a { text-decoration: none; color: #333; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: #0056b3; }
.btn-nav { background: #0056b3; color: #fff !important; padding: 10px 20px; border-radius: 5px; }

/* Hero Section */
.hero { 
    height: 80vh; 
    background: linear-gradient(rgba(0,86,179,0.7), rgba(0,86,179,0.7)), url('../images/business.jpg') center/cover;
    display: flex; align-items: center; text-align: center; color: #fff;
}
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; font-family: 'Montserrat', sans-serif; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; }
.btn-primary { background: #f39c12; color: #fff; padding: 15px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; margin-right: 10px; }
.btn-secondary { background: transparent; border: 2px solid #fff; color: #fff; padding: 13px 30px; text-decoration: none; border-radius: 5px; }

/* Services */
.services { padding: 80px 0; background: #f9f9f9; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: #fff; padding: 20px; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.service-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 5px; margin-bottom: 15px; }

/* Info Section */
.location { padding: 80px 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 768px) {
    .info-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; } /* Simplified mobile */
}

/* Footer */
footer { background: #333; color: #fff; text-align: center; padding: 40px 0; }
footer a { color: #f39c12; text-decoration: none; margin-top: 10px; display: inline-block; }
footer a:hover { text-decoration: underline; }

/* Legal Pages (Privacy & Terms) */
.legal-section { padding: 60px 0; }
.legal-content h1 { margin-bottom: 20px; font-family: 'Montserrat', sans-serif; color: #0056b3; }
.legal-content h2 { margin: 30px 0 15px; font-family: 'Montserrat', sans-serif; color: #333; border-bottom: 2px solid #f39c12; display: inline-block; padding-bottom: 5px; }
.legal-content p { margin-bottom: 15px; }
.legal-content strong { color: #0056b3; }
.legal-content ul { margin-bottom: 20px; padding-left: 20px; }
.legal-content li { margin-bottom: 10px; }
