:root {
    --primary: #2c3e50;
    --secondary: #8b7355;
    --accent: #c9a86c;
    --light: #f8f6f3;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border: #e0dcd5;
    --shadow: rgba(0, 0, 0, 0.08);
    --fallback-img: #d4cfc7;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.ad-disclosure {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 15px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

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

.nav-list a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding-bottom: 4px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.split-section {
    display: flex;
    min-height: 600px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.split-image {
    flex: 1;
    background-color: var(--fallback-img);
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--dark);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--light);
}

.section-dark {
    background-color: var(--primary);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--white);
    flex: 1 1 340px;
    max-width: 380px;
    box-shadow: 0 8px 30px var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 220px;
    background-color: var(--fallback-img);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
}

.service-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    color: var(--secondary);
    font-weight: 700;
}

.service-price span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

.features-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.features-content {
    flex: 1;
}

.features-image {
    flex: 1;
    background-color: var(--fallback-img);
    height: 500px;
    position: relative;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.feature-text h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    flex: 1 1 350px;
    max-width: 400px;
    box-shadow: 0 5px 25px var(--shadow);
    position: relative;
}

.testimonial-quote {
    font-size: 48px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

.testimonial-info h5 {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

.cta-section {
    background-color: var(--secondary);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background-color: var(--white);
    color: var(--secondary);
}

.btn-white:hover {
    background-color: var(--light);
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--secondary);
}

.contact-details h4 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    font-size: 15px;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    font-size: 15px;
    color: var(--text);
    background-color: var(--white);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent);
}

.page-header {
    background-color: var(--primary);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    color: var(--white);
    font-weight: 700;
}

.page-breadcrumb {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb a {
    color: var(--accent);
}

.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 28px;
    color: var(--primary);
    margin: 40px 0 20px;
    font-weight: 600;
}

.content-wrapper h3 {
    font-size: 22px;
    color: var(--primary);
    margin: 30px 0 15px;
    font-weight: 600;
}

.content-wrapper p {
    margin-bottom: 18px;
    color: var(--text);
    line-height: 1.8;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-wrapper li {
    margin-bottom: 10px;
    color: var(--text);
    list-style: disc;
}

.about-values {
    display: flex;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 280px;
    background-color: var(--light);
    padding: 35px;
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.value-card h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
}

.thanks-wrapper {
    text-align: center;
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--primary);
}

.thanks-title {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-text {
    font-size: 18px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 25px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--accent);
    color: var(--dark);
}

.cookie-accept:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.cookie-reject {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cookie-reject:hover {
    border-color: var(--white);
}

.disclaimer {
    background-color: var(--light);
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid var(--secondary);
}

.disclaimer p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.services-list {
    margin: 40px 0;
}

.service-list-item {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.service-list-item:last-child {
    border-bottom: none;
}

.service-list-image {
    width: 200px;
    height: 150px;
    background-color: var(--fallback-img);
    flex-shrink: 0;
    overflow: hidden;
}

.service-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-list-content {
    flex: 1;
}

.service-list-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-list-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-list-price {
    font-size: 22px;
    color: var(--secondary);
    font-weight: 700;
}

.contact-page-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-page-info {
    flex: 1 1 350px;
}

.contact-page-details {
    flex: 1 1 350px;
}

.working-hours {
    margin-top: 40px;
}

.working-hours h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.hours-list {
    font-size: 15px;
    color: var(--text-light);
}

.hours-list p {
    margin-bottom: 8px;
}

@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
        min-height: auto;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 50px 30px;
    }

    .split-image {
        height: 400px;
    }

    .split-image img {
        position: relative;
    }

    .hero-title {
        font-size: 36px;
    }

    .features-split {
        flex-direction: column;
        gap: 40px;
    }

    .features-image {
        height: 350px;
        width: 100%;
    }

    .contact-split {
        flex-direction: column;
    }

    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px var(--shadow);
    }

    .nav-list.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .hero-title {
        font-size: 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .service-list-item {
        flex-direction: column;
        text-align: center;
    }

    .service-list-image {
        width: 100%;
        height: 200px;
    }

    .contact-page-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
