:root {
    --primary: #2d3436;
    --secondary: #b8860b;
    --accent: #d4a574;
    --light: #f8f5f2;
    --dark: #1a1a1a;
    --text: #333333;
    --muted: #6c757d;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.08);
    --border: #e0dcd8;
}

* {
    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);
}

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

.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
}

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

.ad-disclosure {
    background-color: var(--light);
    padding: 8px 16px;
    font-size: 0.75rem;
    color: var(--muted);
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background-color: var(--light);
}

.hero-image {
    flex: 1;
    background-color: var(--accent);
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 30px;
    max-width: 450px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

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

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

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

.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.split-section {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background-color: var(--white);
}

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

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

.split-content h2 {
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.split-content p {
    color: var(--muted);
    margin-bottom: 25px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px var(--shadow);
}

.service-image {
    height: 200px;
    background-color: var(--light);
    overflow: hidden;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-content p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
}

.features-list li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.features-list li:last-child {
    border-bottom: none;
}

.form-section {
    background-color: var(--primary);
    padding: 80px 0;
}

.form-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-text {
    flex: 1;
    color: var(--white);
}

.form-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-text p {
    opacity: 0.9;
    line-height: 1.8;
}

.form-container {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.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: 100px;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-section {
    padding: 80px 0;
    background-color: var(--light);
}

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

.testimonial-card {
    flex: 1 1 calc(50% - 30px);
    max-width: 500px;
    min-width: 300px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.testimonial-info h4 {
    color: var(--primary);
    font-size: 1rem;
}

.testimonial-info span {
    color: var(--muted);
    font-size: 0.85rem;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    background-color: var(--border);
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.about-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--muted);
    margin-bottom: 15px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text);
}

.contact-map {
    flex: 1;
    background-color: var(--light);
    border-radius: 8px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.disclaimer {
    background-color: var(--light);
    padding: 30px;
    margin-top: 40px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    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;
    min-width: 300px;
}

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--secondary);
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

.page-header h1 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--muted);
}

.content-page {
    padding: 60px 0;
}

.content-page h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

.content-page p {
    margin-bottom: 15px;
    color: var(--text);
}

.content-page ul {
    margin: 15px 0 15px 30px;
}

.content-page li {
    margin-bottom: 8px;
}

.thanks-container {
    text-align: center;
    padding: 100px 20px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.thanks-container h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-container p {
    color: var(--muted);
    margin-bottom: 30px;
}

.services-hero {
    display: flex;
    min-height: 400px;
}

.services-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background-color: var(--primary);
    color: var(--white);
}

.services-hero-content h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.services-hero-content p {
    opacity: 0.9;
    max-width: 450px;
}

.services-hero-image {
    flex: 1;
    background-color: var(--border);
    overflow: hidden;
}

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

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

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

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

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

.working-hours {
    background-color: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.working-hours h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

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

.hours-row span:first-child {
    color: var(--text);
}

.hours-row span:last-child {
    color: var(--muted);
}

@media (max-width: 992px) {
    .hero-split,
    .split-section,
    .services-hero {
        flex-direction: column;
    }

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

    .hero-content,
    .split-content {
        padding: 40px 30px;
    }

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

    .form-split,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 15px);
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

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

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