* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #202820;
    background: #fffdf8;
    line-height: 1.6;
}

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.narrow {
    max-width: 850px;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #174c33;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    margin: 15px 0 20px;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin: 8px 0 22px;
}

p {
    font-size: 1.08rem;
}

.topbar {
    background: rgba(255, 253, 248, 0.97);
    border-bottom: 1px solid #dde4da;
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: bold;
    color: #174c33;
}

.logo span {
    color: #59885c;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: #274b35;
    text-decoration: none;
    font-size: 0.95rem;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    background:
        linear-gradient(120deg, #f6f1e6 0%, #eef3e8 100%);
    padding: 85px 0;
}

.hero-grid,
.two-columns,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.35rem;
    max-width: 600px;
    margin-bottom: 32px;
}

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    font-weight: bold;
    color: #57805c;
}

.button {
    display: inline-block;
    background: #175237;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 7px;
    font-weight: bold;
}

.button:hover {
    background: #0f3d28;
}

.image-placeholder {
    min-height: 370px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, #dbe5d5, #f1ecdf);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #56715c;
    border: 1px solid #d2ddce;
    text-align: center;
    padding: 20px;
}

.hero-image {
    min-height: 470px;
}

.intro {
    padding: 90px 0;
    text-align: center;
}

.features-strip {
    background: #f0eee6;
    padding: 45px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.feature-grid strong {
    color: #174c33;
    font-size: 1.1rem;
}

.feature-grid p {
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 2rem;
    color: #2b6544;
    margin-bottom: 10px;
}

.section {
    padding: 95px 0;
}

.soft {
    background: #f7f4eb;
}

.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.check-list li {
    margin: 15px 0;
    padding-left: 35px;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #1d633f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.security-box {
    background: #e6eddf;
    padding: 25px;
    border-radius: 12px;
    margin-top: 35px;
}

.security-box strong {
    color: #174c33;
    font-size: 1.2rem;
}

.cost-intro {
    max-width: 850px;
    margin-bottom: 40px;
}

.price-table {
    border: 1px solid #d1d9ce;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    border-bottom: 1px solid #d1d9ce;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row > div {
    padding: 17px 20px;
}

.price-row > div:last-child {
    border-left: 1px solid #d1d9ce;
    text-align: center;
}

.price-head {
    background: #174c33;
    color: white;
    font-weight: bold;
}

.note {
    margin-top: 20px;
    font-size: 0.9rem;
    font-style: italic;
}

.contact-section {
    background: #174c33;
    color: white;
    padding: 75px 0;
}

.contact-section h2 {
    color: white;
}

.light {
    color: #c9ddc4;
}

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

.contacts a {
    color: white;
    text-decoration: none;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: bold;
}
.contacts .phone-number {
    color: white;
    font-size: 1.15rem;
    font-weight: bold;
}

.contacts a {
    font-size: 1.4rem;
}
.contacts a:hover {
    text-decoration: underline;
}

footer {
    background: #103b28;
    color: #dce8dc;
    padding: 25px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 800px) {

    nav {
        display: none;
    }

    .hero {
        padding: 55px 0;
    }

    .hero-grid,
    .two-columns,
    .reverse,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 65px 0;
    }

    .image-placeholder,
    .hero-image {
        min-height: 300px;
    }

    .price-row {
        grid-template-columns: 1fr;
    }

    .price-row > div:last-child {
        border-left: none;
        border-top: 1px solid #d1d9ce;
        text-align: left;
    }

    .price-head > div:last-child {
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 520px) {

    .feature-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}.hero-image {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 18px;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

@media (max-width: 800px) {
    .hero-image img {
        height: 300px;
    }
}
.section-image {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 18px;
}

.section-image img {
    width: 100%;
    max-width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

@media (max-width: 800px) {
    .section-image img {
        height: 300px;
    }
}