* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

nav { background: #ffffff; padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 100; }
nav .container { display: flex; justify-content: space-between; align-items: center; }
nav .logo { display: flex; align-items: center; }
nav .logo img { height: 50px; width: auto; }
nav ul { list-style: none; display: flex; gap: 30px; }
nav ul li a { color: #000000; text-decoration: none; transition: color 0.3s; }
nav ul li a:hover { color: #1DD1A1; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 26px; height: 3px; background: #000; border-radius: 2px; transition: 0.3s; }

.hero { background: linear-gradient(135deg, #071D2F 0%, #0A3D62 100%); min-height: 100vh; display: flex; align-items: center; color: #fff; padding-top: 80px; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; right: -100px; top: 50%; transform: translateY(-50%); width: 600px; height: 100%; background: url('../images/territory-map.svg') center / contain no-repeat; opacity: 0.15; pointer-events: none; }
.hero h1 { font-size: 56px; margin-bottom: 20px; }
.hero h1 span { color: #1DD1A1; }
.hero p { font-size: 20px; margin-bottom: 30px; opacity: 0.9; }
.btn { background: #1DD1A1; color: #071D2F; padding: 15px 30px; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; font-weight: 600; text-decoration: none; display: inline-block; transition: transform 0.3s; }
.btn:hover { transform: translateY(-2px); }
.hero .container { position: relative; z-index: 1; }

.services { padding: 80px 0; background: #f8f9fa; }
.services h2 { text-align: center; margin-bottom: 50px; font-size: 36px; color: #071D2F; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); text-align: center; transition: transform 0.3s; border-top: 4px solid #1DD1A1; }
.service-card:hover { transform: translateY(-5px); }
.service-card h3 { color: #071D2F; margin: 15px 0; }
.service-icon { font-size: 48px; color: #1DD1A1; }

.about { padding: 80px 0; position: relative; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about h2 { margin-bottom: 20px; font-size: 36px; color: #071D2F; }
.about h3 { color: #0A3D62; }
.about p { margin-bottom: 15px; line-height: 1.8; }
.about-map { position: absolute; left: -150px; top: 50%; transform: translateY(-50%); width: 400px; opacity: 0.08; }

.contact { background: #071D2F; padding: 80px 0; color: #fff; }
.contact h2 { text-align: center; margin-bottom: 10px; font-size: 36px; }
.contact .lead { text-align: center; margin-bottom: 40px; opacity: 0.8; }
.contact-email { text-align: center; }
.email-link { display: inline-block; font-size: 32px; color: #1DD1A1; text-decoration: none; padding: 20px 40px; border: 3px solid #1DD1A1; border-radius: 10px; transition: all 0.3s; font-weight: bold; }
.email-link:hover { background: #1DD1A1; color: #071D2F; }

footer { background: #0A3D62; color: #fff; padding: 30px 0; text-align: center; }

@media (max-width: 768px) {
    .hero h1 { font-size: 38px; }
    .about-content { grid-template-columns: 1fr; }
    nav .logo img { height: 35px; }
    .hamburger { display: flex; }
    nav ul { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; flex-direction: column; gap: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
    nav ul li a { display: block; padding: 15px 20px; border-top: 1px solid #eee; }
    nav ul.active { display: flex; }
}