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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8f6f3;
    --background-dark: #2c3e50;
    --white: #ffffff;
    --border-color: #e0ddd9;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 5px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--background-light);
}

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

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

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

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

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

.hero-section {
    position: relative;
    min-height: 600px;
    background-color: var(--background-dark);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.intro-block {
    background-color: var(--white);
    padding: 80px 0;
}

.intro-block h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.intro-block p {
    font-size: 1.15rem;
    color: var(--text-dark);
}

.featured-service {
    background-color: var(--background-light);
    padding: 100px 0;
}

.service-grid-alt {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.service-image-large {
    flex: 1;
    min-width: 300px;
    background-color: var(--accent-color);
}

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

.service-text-block {
    flex: 1;
    min-width: 300px;
}

.service-text-block h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-text-block p {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.inline-cta {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.inline-cta:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.services-overview {
    background-color: var(--primary-color);
    padding: 90px 0;
}

.services-overview h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

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

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

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

.service-card img {
    width: 100%;
    height: 250px;
    background-color: var(--background-light);
}

.service-card h4 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px;
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.process-section {
    background-color: var(--white);
    padding: 90px 0;
}

.process-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 80px;
}

.step h5 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step p {
    color: var(--text-dark);
}

.testimonial-block {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.testimonial-block blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--white);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-block cite {
    display: block;
    font-size: 1rem;
    color: var(--background-light);
    font-style: normal;
}

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

.form-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-section > div > p {
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    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-color);
}

.btn-submit,
.btn-primary {
    padding: 14px 36px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-submit:hover,
.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 12px 30px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col h6 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--background-light);
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: var(--background-light);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--background-light);
    font-size: 0.9rem;
}

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

.page-hero h1 {
    color: var(--white);
    margin-bottom: 15px;
}

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

.about-intro {
    background-color: var(--white);
    padding: 70px 0;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.9;
}

.about-story {
    background-color: var(--background-light);
    padding: 90px 0;
}

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

.text-column {
    flex: 1;
    min-width: 300px;
}

.image-column {
    flex: 1;
    min-width: 300px;
    background-color: var(--accent-color);
}

.image-column img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.team-section {
    background-color: var(--white);
    padding: 90px 0;
}

.team-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: 6px;
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-member span {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.philosophy-section h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.philosophy-section p {
    color: var(--background-light);
    font-size: 1.15rem;
}

.values-block {
    background-color: var(--white);
    padding: 90px 0;
}

.values-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    max-width: 400px;
    padding: 35px;
    background-color: var(--background-light);
    border-radius: 6px;
}

.value-card h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-dark);
}

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

.cta-block h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-block p {
    color: var(--text-dark);
    margin-bottom: 35px;
}

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

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto 80px;
    padding: 0 20px;
    flex-wrap: wrap;
}

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

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-content h4 {
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-content ul li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 25px 0;
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

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

.info-note {
    background-color: var(--background-light);
    padding: 50px 0;
}

.info-note p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-info {
    background-color: var(--white);
    padding: 70px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
}

.detail-block {
    margin-bottom: 35px;
}

.detail-block h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.detail-block p {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 8px;
}

.map-placeholder {
    height: 100%;
}

.map-placeholder p {
    margin-bottom: 20px;
}

.map-placeholder ul {
    margin-left: 20px;
}

.map-placeholder ul li {
    margin-bottom: 10px;
}

.visit-info {
    background-color: var(--background-light);
    padding: 70px 0;
}

.visit-info h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.faq-section h2 {
    color: var(--primary-color);
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.thanks-section {
    background-color: var(--white);
    padding: 100px 0;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: var(--background-light);
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
}

.service-confirmation p {
    margin: 0;
    font-size: 1.1rem;
}

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

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

.next-steps h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.step-item {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    max-width: 300px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 6px;
    text-align: center;
}

.step-item .step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

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

.legal-page {
    background-color: var(--white);
    padding: 80px 0;
}

.legal-page h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-page h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.legal-page h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    margin-bottom: 10px;
}

.legal-page p {
    margin-bottom: 20px;
}

.legal-page em {
    color: var(--text-light);
    display: block;
    margin-bottom: 40px;
}

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

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

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero-text p {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .service-grid-alt,
    .content-split,
    .service-block {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}