* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #0d1b2a;
    background-color: #fff;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0d1b2a;
    z-index: 100;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.logo span {
    color: #e63946;
}

.nav {
    position: relative;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    font-weight: 500;
}

.nav-link:hover {
    color: #e63946;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.75);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.hero-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
}

.hero-title .highlight {
    color: #e63946;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 20px;
}

.section-description {
    color: #6c757d;
    margin-bottom: 20px;
}

.reasons {
    padding: 60px 0;
}

.reasons-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reasons-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.reasons-list li,
.advantages-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.reasons-list li::before,
.advantages-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e63946;
    font-weight: bold;
}

.advantages {
    padding: 60px 0;
    background-color: #e9ecef;
}

.advantages-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.advantages-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.cta {
    position: relative;
    padding: 60px 0;
    background-image: url('images/cta.jpg');
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.8);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-text {
    color: #fff;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.stats {
    padding: 50px 0;
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 25px;
    background-color: #e9ecef;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e63946;
}

.stat-label {
    color: #6c757d;
}

.contacts {
    padding: 60px 0;
    background-color: #1d3557;
}

.contacts-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacts-info .section-title {
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f1faee;
    margin-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.form-message {
    color: #f1faee;
    font-size: 14px;
    min-height: 20px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background-color: #e63946;
    color: #fff;
}

.btn-primary:hover {
    background-color: #c1121f;
}

.contacts-map {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    background-color: #0d1b2a;
    padding: 20px 0;
    text-align: center;
}

.footer p {
    color: #6c757d;
    font-size: 14px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .reasons-content,
    .advantages-content {
        flex-direction: row;
        align-items: center;
    }

    .reasons-image,
    .reasons-text,
    .advantages-text,
    .advantages-image {
        flex: 1;
    }

    .stats-content {
        flex-direction: row;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
        max-width: 250px;
    }

    .contacts-content {
        flex-direction: row;
    }

    .contacts-info,
    .contacts-map {
        flex: 1;
    }

    .contacts-map {
        height: 350px;
    }

    .reasons-image img,
    .advantages-image img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #0d1b2a;
        padding: 20px;
        gap: 15px;
        border-radius: 8px;
    }

    .nav-list.active {
        display: flex;
    }
}
