 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
        }

        body {
            background-color: #faf8f5;
            color: #1e1e1e;
            line-height: 1.5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Навигация */
        .navbar {
            background-color: #1e2b2f;
            color: white;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 300;
            letter-spacing: 3px;
            background-color: rgb(255, 255, 255);
            border: 1px solid #b59d7a;
            padding: 5px 12px;
            /*border-radius: 40px;*/
            color: #e9d6b0;
        }

        .logo-img {
            width: 100%; /* Делает изображение адаптивным */
            max-width: 300px; /* Ограничивает максимальную ширину */
            height: auto; /* Сохраняет пропорции */
        }


        .nav-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #f0ede8;
            text-decoration: none;
            font-weight: 400;
            transition: color 0.2s;
            font-size: 1.05rem;
            border-bottom: 1px solid transparent;
            padding-bottom: 4px;
        }

        .nav-links a:hover {
            color: #d4b68a;
            border-bottom-color: #d4b68a;
        }

        /* Герой (первый экран) */
        .hero {
            background: linear-gradient(135deg, #2c3e42 0%, #1e2b2f 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .hero h1 span {
            color: #d4b68a;
            font-weight: 400;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 20px auto 0;
            opacity: 0.9;
        }

        /* Общие стили секций */
        section {
            padding: 70px 0;
            border-bottom: 1px solid #e2dcd2;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 300;
            margin-bottom: 40px;
            position: relative;
            color: #2b3b40;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #b59d7a;
            margin-top: 12px;
        }

        /* О нас */
        .about-content {
            display: flex;
            gap: 50px;
            align-items: center;
            flex-wrap: wrap;
        }

        .about-text {
            flex: 2;
            min-width: 300px;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #3a4449;
        }

        .about-highlight {
            background-color: #e9e1d3;
            padding: 25px;
            border-radius: 20px;
            flex: 1;
            min-width: 250px;
        }

        .about-highlight h3 {
            font-weight: 500;
            color: #2c3e42;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .about-highlight ul {
            list-style: none;
        }

        .about-highlight li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-highlight i {
            color: #b59d7a;
            font-size: 1.3rem;
            width: 30px;
        }

        .about-image {
            margin: 5% auto;
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }


        /* Контакты */
        .contacts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 35px;
            margin-bottom: 40px;
        }

        .contact-card {
            background: white;
            padding: 25px 20px;
            border-radius: 24px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.03);
            border: 1px solid #ede7dd;
            transition: transform 0.2s;
        }

        .contact-card:hover {
            transform: translateY(-5px);
        }

        .contact-card i {
            font-size: 2rem;
            color: #b59d7a;
            margin-bottom: 15px;
        }

        .contact-card h3 {
            font-weight: 500;
            margin-bottom: 15px;
            color: #2b3b40;
        }

        .contact-card p {
            margin-bottom: 8px;
            color: #3f4a4f;
            word-break: break-word;
        }

        .contact-card a {
            color: #1e2b2f;
            text-decoration: none;
            border-bottom: 1px dotted #b59d7a;
        }

        .contact-card a:hover {
            color: #b59d7a;
        }

        .map-container {
            margin-top: 30px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 1px solid #d9cfbf;
            height: 300px;
            background: #d4dde0; /* Заглушка под карту */
            position: relative;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: #b8c7ce;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2b3b40;
            font-size: 1.2rem;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.2"><text x="10" y="30" font-size="14">📍 Карта проезда</text><rect width="100" height="100" fill="%23a3b6c0"/></svg>');
            background-size: cover;
        }

        /* Гарантия */
        .guarantee-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            background: #ffffffd9;
            border-radius: 40px;
            padding: 40px;
            border: 1px solid #e0d6c8;
        }

        .guarantee-list {
            flex: 1;
            min-width: 260px;
        }

        .guarantee-item {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .guarantee-item i {
            font-size: 2rem;
            color: #b59d7a;
        }

        .guarantee-item h4 {
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 6px;
            color: #2b3b40;
        }

        .guarantee-item p {
            color: #4d585f;
        }

        .guarantee-note {
            flex: 1;
            background: #f4efe7;
            border-radius: 32px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .guarantee-note h3 {
            font-weight: 400;
            color: #1e2b2f;
            margin-bottom: 15px;
        }

        .guarantee-note .badge {
            background: #1e2b2f;
            color: #e9d6b0;
            padding: 10px 20px;
            border-radius: 40px;
            display: inline-block;
            align-self: flex-start;
            font-weight: 300;
            letter-spacing: 1px;
        }

        /* Поставщикам (отдельный блок, но по ТЗ нужна отдельная страница — см. модальное окно или вторую страницу)
           Сделаем отдельную скрытую страницу, которая появляется при клике. Но так как это лендинг с навигацией по якорям, а форма нужна отдельно — добавим секцию, доступную по прямой ссылке или отдельной странице. 
           Логичнее сделать вторую HTML-страницу, но по заданию "сделай сайт по типу лендинга ... поставщикам и дистрибьюторам (отдельная страница с формой)". Решение: добавим кнопку в навбар, которая ведёт на эту же страницу с якорем, но по сути это тот же лендинг с секцией #suppliers, оформленной как "отдельная" стилистически. Либо создаём ещё один html, но для удобства покажем, что секция выделена. Сделаем её визуально отдельной, с затемнённым фоном.
        */
        .suppliers-section {
            background: linear-gradient(to right, #f0f2f0, #faf8f5);
            border-radius: 60px 60px 0 0;
            margin-top: 40px;
            scroll-margin-top: 70px;
        }

        .suppliers-card {
            background: white;
            border-radius: 48px;
            padding: 50px;
            box-shadow: 0 20px 35px rgba(0,0,0,0.05);
            border: 1px solid #cfc6b8;
            max-width: 900px;
            margin: 0 auto;
        }

        .suppliers-card h2 {
            font-size: 2.5rem;
            font-weight: 300;
            color: #2b3b40;
            margin-bottom: 15px;
        }

        .suppliers-card h2 strong {
            font-weight: 500;
            color: #a58357;
        }

        .suppliers-card .desc {
            margin-bottom: 35px;
            color: #4f5b62;
            font-size: 1.1rem;
        }

        .suppliers-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        label {
            margin-bottom: 8px;
            font-weight: 500;
            color: #3a4a50;
        }

        input, textarea, select {
            padding: 14px 18px;
            border: 1px solid #cdc2b3;
            border-radius: 30px;
            font-size: 1rem;
            background: #fefcf9;
            transition: 0.2s;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #b59d7a;
            box-shadow: 0 0 0 3px rgba(181,157,122,0.2);
        }

        textarea {
            resize: vertical;
            border-radius: 24px;
        }

        .btn-submit {
            background: #1e2b2f;
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 40px;
            font-size: 1.2rem;
            font-weight: 500;
            cursor: pointer;
            transition: 0.2s;
            grid-column: span 2;
            justify-self: center;
            min-width: 240px;
            margin-top: 10px;
            border: 1px solid #b59d7a;
        }

        .btn-submit:hover {
            background: #2f4046;
            transform: scale(1.02);
        }

        footer {
            background: #1e2b2f;
            color: #bdb3a5;
            text-align: center;
            padding: 30px;
            font-size: 0.95rem;
        }

        /* адаптив */
        @media (max-width: 700px) {
            .navbar .container {
                flex-direction: column;
                gap: 15px;
            }
            .nav-links {
                justify-content: center;
                gap: 15px;
            }
            .suppliers-form {
                grid-template-columns: 1fr;
            }
            .form-group.full-width {
                grid-column: span 1;
            }
            .btn-submit {
                grid-column: span 1;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
        }