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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #f8f8f8;
}

.ad-label {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 11px;
    color: #666;
}

.top-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 30px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.3px;
}

.menu-items {
    display: flex;
    gap: 35px;
}

.menu-items a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.menu-items a:hover {
    color: #c19563;
}

.main-hero {
    background-color: #fff;
    padding: 60px 30px;
}

.hero-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.hero-left-block {
    flex: 1;
}

.hero-image-container {
    background-color: #f0e6d9;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-right-block {
    flex: 1;
    padding: 0 30px;
}

.hero-right-block h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-right-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background-color: #c19563;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #a87d4f;
    transform: translateY(-1px);
}

.services-cards {
    padding: 80px 30px;
    background-color: #f8f8f8;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h2 {
    font-size: 40px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-intro p {
    font-size: 17px;
    color: #666;
}

.cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.service-card-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 320px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.service-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-img {
    background-color: #f0e6d9;
}

.card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #c19563;
    margin-bottom: 16px;
}

.select-btn {
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-btn:hover {
    background-color: #c19563;
}

.about-intro {
    padding: 80px 30px;
    background-color: #fff;
}

.about-content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-column {
    flex: 1;
}

.text-column h2 {
    font-size: 36px;
    margin-bottom: 22px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.text-column p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.text-link {
    display: inline-block;
    color: #c19563;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 2px solid #c19563;
    transition: all 0.2s ease;
}

.text-link:hover {
    color: #a87d4f;
    border-bottom-color: #a87d4f;
}

.image-column {
    flex: 1;
    background-color: #f0e6d9;
    border-radius: 12px;
    overflow: hidden;
}

.image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.form-block {
    padding: 80px 30px;
    background-color: #f0e6d9;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.form-desc {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.input-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-row label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.input-row input,
.input-row select,
.input-row textarea {
    padding: 12px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.input-row input:focus,
.input-row select:focus,
.input-row textarea:focus {
    outline: none;
    border-color: #c19563;
}

.input-row textarea {
    resize: vertical;
}

.form-submit-btn {
    padding: 14px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: #c19563;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 30px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-block {
    flex: 1;
    min-width: 220px;
}

.footer-block h4 {
    font-size: 17px;
    margin-bottom: 18px;
    color: #c19563;
    font-weight: 600;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-block ul li a:hover {
    color: #c19563;
}

.footer-disclaimer-box {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 22px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.footer-credits {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: #777;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px;
    z-index: 10000;
    display: none;
}

.cookie-popup.active {
    display: block;
}

.cookie-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-inner p {
    flex: 1;
    min-width: 280px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.cookie-accept {
    padding: 11px 28px;
    background-color: #c19563;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background-color: #a87d4f;
}

.cookie-decline {
    padding: 11px 28px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-more {
    color: #c19563;
    text-decoration: underline;
    font-size: 13px;
    cursor: pointer;
}

.cookie-more:hover {
    color: #a87d4f;
}

@media (max-width: 768px) {
    .hero-wrap,
    .about-content-wrap {
        flex-direction: column;
    }

    .hero-right-block h1 {
        font-size: 34px;
    }

    .cards-container {
        justify-content: center;
    }

    .service-card-item {
        width: 100%;
        max-width: 400px;
    }

    .menu-items {
        gap: 20px;
    }

    .menu-items a {
        font-size: 14px;
    }

    .main-hero {
        padding: 40px 20px;
    }

    .services-cards,
    .about-intro,
    .form-block {
        padding: 60px 20px;
    }

    .form-wrapper {
        padding: 35px 25px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 35px;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-decline {
        width: 100%;
    }
}

