: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);
}

* {
    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;
    object-fit: cover;
}

address {
    font-style: normal;
}

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

.ad-disclosure span {
    background-color: var(--secondary);
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 0.8rem;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

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

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

.nav-link {
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

main {
    min-height: calc(100vh - 200px);
}

.hero {
    display: flex;
    min-height: 75vh;
    background-color: var(--light);
}

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

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

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

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

.btn-full {
    width: 100%;
}

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

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.intro-visual {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

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

.services-preview {
    background-color: var(--light);
    padding: 80px 20px;
}

.services-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.service-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

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

.card-content {
    padding: 25px;
}

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

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

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

.card-link {
    color: var(--secondary);
    font-weight: 600;
}

.card-link:hover {
    color: var(--primary);
}

.features-section {
    padding: 80px 20px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.feature-icon {
    margin-bottom: 20px;
    color: var(--secondary);
}

.feature-icon svg {
    stroke: var(--secondary);
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonials {
    background-color: var(--primary);
    padding: 80px 20px;
    color: var(--white);
}

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

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
}

.testimonial p {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial cite {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}

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

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

.cta-section.cta-alt .cta-content h2 {
    color: var(--primary);
}

.cta-section.cta-alt .cta-content p {
    color: var(--text-light);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.page-hero {
    background-color: var(--light);
    padding: 70px 20px;
    text-align: center;
}

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

.page-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-story {
    padding: 80px 20px;
}

.story-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.story-text {
    flex: 1;
}

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

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

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.value-card {
    flex: 1;
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
}

.value-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.team-section {
    padding: 80px 20px;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.team-intro h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.team-intro p {
    color: var(--text-light);
}

.team-image-block {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

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

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 25px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 15px var(--shadow);
}

.timeline-item .year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    min-width: 80px;
}

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

.services-full {
    padding: 80px 20px;
}

.services-full.alt-bg {
    background-color: var(--light);
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

.service-info {
    flex: 1;
}

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

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    margin: 25px 0;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.pricing-block {
    margin: 25px 0;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.services-summary {
    padding: 60px 20px;
    background-color: var(--white);
}

.services-summary h2 {
    font-size: 1.8rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
}

.summary-table {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.summary-service {
    color: var(--text);
}

.summary-price {
    font-weight: 600;
    color: var(--secondary);
}

.contact-section {
    padding: 80px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

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

.info-card {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.info-card:last-child {
    border-bottom: none;
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-card p,
.info-card address {
    color: var(--text-light);
    line-height: 1.8;
}

.email-display {
    color: var(--text);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-light);
}

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

.contact-form-block h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-form-block > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

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

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

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

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-label span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.checkbox-label a {
    color: var(--secondary);
}

.map-section {
    padding: 0 20px 80px;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 300px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder svg {
    margin-bottom: 15px;
    color: var(--secondary);
}

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

.thanks-content {
    max-width: 600px;
}

.thanks-content .thanks-icon {
    margin-bottom: 30px;
    color: var(--secondary);
}

.thanks-content .thanks-icon svg {
    stroke: var(--secondary);
}

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

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

.thanks-content .service-confirmation {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.thanks-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.related-section {
    background-color: var(--light);
    padding: 60px 20px;
    text-align: center;
}

.related-section h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.related-cards {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.related-card {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

.related-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.related-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.legal-page {
    padding: 60px 20px;
}

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

.legal-content h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.legal-updated {
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.legal-section h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 20px 0 10px;
}

.legal-section p {
    color: var(--text);
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
}

.legal-section ul li {
    list-style: disc;
    color: var(--text);
    margin-bottom: 8px;
}

.legal-section address {
    background-color: var(--light);
    padding: 20px;
    border-radius: 4px;
    margin: 15px 0;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-section {
    flex: 1;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-section address {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    margin-bottom: 20px;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: var(--accent);
}

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

.btn-accept {
    background-color: var(--secondary);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .intro-wrapper {
        flex-direction: column;
    }

    .intro-visual {
        min-height: 300px;
        width: 100%;
    }

    .services-cards {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

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

    .testimonials-container {
        flex-direction: column;
    }

    .story-block {
        flex-direction: column;
    }

    .story-image {
        min-height: 300px;
        width: 100%;
    }

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

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .service-image-large {
        min-height: 300px;
        width: 100%;
    }

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

    .related-cards {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 20px var(--shadow);
    }

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

    .nav-menu li {
        border-bottom: 1px solid var(--border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

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

    .page-hero h1 {
        font-size: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

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

    .footer-section {
        flex: 1 1 100%;
    }

    .footer-bottom {
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}
