:root {
    --primary: #003366; /* Темно-синий из логотипа */
    --accent: #f39c12;
    --light: #f4f7f6;
    --dark: #222;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--dark); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header & Nav */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { font-weight: bold; font-size: 24px; color: var(--primary); }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

/* Hero Section */
.hero { background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&q=80&w=1500'); background-size: cover; height: 90vh; display: flex; align-items: center; }
.badge { background: var(--primary); color: white; padding: 5px 15px; border-radius: 20px; font-size: 14px; }
.hero h1 { font-size: 48px; margin: 20px 0; color: var(--primary); line-height: 1.2; }
.hero p { font-size: 18px; margin-bottom: 30px; max-width: 600px; }
.btn { padding: 12px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; display: inline-block; cursor: pointer; transition: 0.3s; border: none; }
.btn.primary { background: var(--primary); color: white; }
.btn.secondary { border: 2px solid var(--primary); color: var(--primary); margin-left: 15px; }
.btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* Services */
.services { padding: 80px 0; background: var(--light); }
.section-title { text-align: center; margin-bottom: 50px; font-size: 32px; color: var(--primary); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-top: 5px solid var(--primary); }
.service-card h3 { margin-bottom: 15px; color: var(--primary); }

/* Contacts */
.contacts { padding: 80px 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-list { list-style: none; margin: 20px 0; }
.contact-list li { margin-bottom: 10px; }
.license-box { margin-top: 30px; padding: 15px; border: 1px dashed var(--primary); display: inline-block; font-weight: bold; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px; }
.contact-form textarea { height: 120px; }

footer { background: var(--primary); color: white; text-align: center; padding: 20px 0; font-size: 14px; }

@media (max-width: 768px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    .nav-links { display: none; }
}