* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefefe;
    color: #1e1e2a;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.98);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1e3a3f, #c9822b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo span {
    color: #c9822b;
    background: none;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #2d4a4f;
    transition: color 0.2s;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #c9822b;
}

.hero {
    background: linear-gradient(
        105deg,
        #f5f2ea 0%,
        #e4e0d4 100%
    );
    padding: 80px 0 90px;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.hero-content {
    flex: 1.2;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1e3a3f;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #3f5a54;
    max-width: 550px;
    margin-bottom: 32px;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #1e3a3f;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #c9822b;
    color: #1e3a3f;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #1e3a3f;
    background: transparent;
    padding: 10px 30px;
    border-radius: 40px;
    font-weight: 700;
    color: #1e3a3f;
    text-decoration: none;
    transition: 0.2s;
}

.btn-outline:hover {
    background: #1e3a3f;
    color: white;
}

.hero-logo-simple {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
}

.fallback-text-logo {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        #1e3a3f,
        #c9822b
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

@media (max-width: 800px) {

    .hero-logo-simple {
        min-width: 200px;
    }

    .fallback-text-logo {
        font-size: 1.5rem;
    }
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #1e3a3f;
}

.section-sub {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px auto;
    color: #4a625c;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: 28px;
    padding: 32px 24px;
    box-shadow:
        0 12px 28px -8px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    border: 1px solid #eee7dd;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 36px -12px rgba(0,0,0,0.12);
    border-color: #c9822b60;
}

.service-icon {
    font-size: 3rem;
    color: #c9822b;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: #4a625c;
}

.advantages-bg {
    background: #f2efe7;
}

.advantages-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.advantage-item {
    flex: 1;
    min-width: 210px;
    text-align: center;
    background: white;
    padding: 32px 20px;
    border-radius: 36px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.02);
}

.advantage-item i {
    font-size: 2.5rem;
    color: #c9822b;
    margin-bottom: 20px;
}

.advantage-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta {
    background: #1e3a3f;
    color: white;
    text-align: center;
    border-radius: 48px;
    margin: 40px auto 20px;
    padding: 60px 40px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta .btn-primary {
    background: #c9822b;
    color: #1e3a3f;
    margin-top: 16px;
}

.cta .btn-primary:hover {
    background: white;
    color: #1e3a3f;
}

.requisites-section {
    background: #ffffff;
    border-radius: 48px;
    box-shadow:
        0 20px 35px -10px rgba(0,0,0,0.05);
    padding: 48px 48px;
    margin-top: 20px;
}

.requisites-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.requisites-col {
    flex: 1;
    min-width: 260px;
}

.requisites-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e3a3f;
    margin-bottom: 24px;
    border-left: 5px solid #c9822b;
    padding-left: 18px;
}

.requisite-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed #e2ded5;
    padding: 14px 0;
    font-size: 0.98rem;
    gap: 16px;
    flex-wrap: wrap;
}

.requisite-label {
    font-weight: 700;
    color: #2d4a4f;
    width: 120px;
    flex-shrink: 0;
}

.requisite-value {
    color: #2c3a37;
    font-weight: 500;
    text-align: right;
    flex: 1;
    word-break: break-word;
}

.email-highlight {
    background: #f2efe7;
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
}

.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e3a3f;
    color: #e8e2d4;
    padding: 18px 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow:
        0 -4px 20px rgba(0,0,0,0.15);
    font-family: 'Inter', sans-serif;
}

.cookie-bar.visible {
    transform: translateY(0);
}

.cookie-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.45;
    flex: 1;
}

.cookie-btn {
    background: #c9822b;
    border: none;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #1e3a3f;
    font-family: inherit;
}

.cookie-btn:hover {
    background: #e6ac4a;
}

@media (max-width: 700px) {

    .cookie-bar .container {
        flex-direction: column;
        text-align: center;
    }
}

footer {
    background: #1c2c28;
    color: #cddbd6;
    text-align: center;
    padding: 36px 0;
    font-size: 0.9rem;
}

@media (max-width: 800px) {

    .navbar {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .requisites-section {
        padding: 32px 24px;
    }

    .requisite-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .requisite-label {
        width: auto;
    }

    .requisite-value {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero-logo-simple {
        display: none;
    }
}