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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #8b7355;
    --text-color: #2c2c2c;
    --light-text: #666;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: #fff;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.ad-label {
    font-size: 0.75rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-minimal {
    margin-top: 80px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-content-center {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 3rem 4rem;
    text-align: left;
}

.hero-title-large {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    max-width: 600px;
    font-weight: 300;
}

.hero-image-block {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.hero-image-block img {
    width: 100%;
    height: 100%;
}

.intro-statement {
    padding: 8rem 3rem;
}

.statement-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.large-heading {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.image-section-full {
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-color: var(--secondary-color);
    margin: 4rem 0;
}

.image-section-full img {
    width: 100%;
    height: 100%;
}

.services-preview {
    padding: 6rem 3rem;
    background-color: var(--secondary-color);
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.section-title-big {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text {
    font-size: 1.2rem;
    color: var(--light-text);
    font-weight: 300;
}

.service-grid-minimal {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-large {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
}

.service-info {
    padding: 3rem;
}

.service-info h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.price-tag {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
}

.contact-form-section {
    padding: 8rem 3rem;
    background-color: #fff;
}

.form-container-centered {
    max-width: 700px;
    margin: 0 auto;
}

.form-heading {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.form-subtext {
    font-size: 1.1rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 3rem;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    border: 1px solid var(--border-color);
    background-color: #fff;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--secondary-color);
    cursor: default;
}

.submit-button-large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.submit-button-large:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.trust-statement {
    padding: 8rem 3rem;
    background-color: var(--secondary-color);
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
}

.large-quote {
    font-size: 2.2rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 3rem;
}

.final-image {
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.final-image img {
    width: 100%;
    height: 100%;
}

.footer-minimal {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.footer-section p,
.footer-section a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-section a {
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.email-text {
    color: rgba(255, 255, 255, 0.8);
}

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: #fff;
    padding: 2rem;
    z-index: 10000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-family: 'Georgia', serif;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #fff;
    color: var(--primary-color);
}

.cookie-btn.accept:hover {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.cookie-btn.reject {
    background-color: transparent;
    color: #fff;
}

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

.page-hero-minimal {
    margin-top: 80px;
    padding: 8rem 3rem 4rem;
    text-align: center;
    background-color: var(--secondary-color);
}

.page-title-large {
    font-size: 4rem;
    font-weight: 300;
    color: var(--primary-color);
}

.about-intro {
    padding: 6rem 3rem;
}

.about-content-wide {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-section {
    padding: 5rem 3rem;
    background-color: var(--secondary-color);
}

.philosophy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-text {
    margin-bottom: 2rem;
}

.medium-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.philosophy-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.values-minimal {
    padding: 6rem 3rem;
}

.values-container {
    max-width: 900px;
    margin: 0 auto;
}

.values-container .section-title-big {
    text-align: center;
    margin-bottom: 4rem;
}

.value-block {
    margin-bottom: 4rem;
}

.value-block h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.team-statement {
    padding: 6rem 3rem;
    background-color: var(--secondary-color);
}

.location-info {
    padding: 6rem 3rem;
}

.location-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.location-wrapper p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.services-intro-page {
    padding: 4rem 3rem;
    background-color: var(--secondary-color);
}

.intro-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-block {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-detail-block:hover {
    background-color: var(--secondary-color);
}

.service-detail-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    min-width: 50%;
    height: 600px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

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

.service-text-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 300;
}

.service-text-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.price-display {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 2rem;
}

.contact-info-section {
    padding: 6rem 3rem;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.contact-details-minimal {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 250px;
}

.contact-block h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.visit-note {
    background-color: var(--secondary-color);
    padding: 3rem;
    text-align: center;
}

.medium-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.location-section {
    padding: 6rem 3rem;
    background-color: var(--secondary-color);
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.thanks-section {
    padding: 10rem 3rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: var(--secondary-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.service-selected {
    font-size: 1.2rem;
    color: var(--text-color);
}

.thanks-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.back-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    margin-top: 2rem;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.legal-page {
    padding: 5rem 3rem;
}

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

.legal-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 3rem;
    }

    .large-heading {
        font-size: 2rem;
    }

    .section-title-big {
        font-size: 2.5rem;
    }

    .service-detail-block,
    .service-detail-block:nth-child(even) {
        flex-direction: column;
    }

    .service-image-large {
        height: 400px;
    }

    .contact-details-minimal {
        flex-direction: column;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .cookie-content {
        flex-direction: column;
    }
}