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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b5a3c;
}

.hero-editorial {
    max-width: 700px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.hero-content-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-image-inline {
    margin: 2.5rem 0;
}

.hero-image-inline img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8ddd3;
}

.story-section {
    max-width: 700px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 600;
}

.story-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: #444;
    font-size: 1.05rem;
}

.inline-cta {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 2px solid #8b5a3c;
    border-bottom: 2px solid #8b5a3c;
}

.text-link {
    color: #8b5a3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.text-link:hover {
    color: #6d4430;
}

.content-image {
    margin: 2.5rem 0;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8ddd3;
}

.services-preview {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.section-header-narrow {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-header-narrow h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.section-header-narrow p {
    font-size: 1.05rem;
    color: #555;
}

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    width: 350px;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8ddd3;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
    font-weight: 600;
}

.card-content p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price {
    font-size: 1.25rem;
    color: #8b5a3c;
    font-weight: 700;
}

.form-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.form-container-narrow {
    max-width: 600px;
    margin: 0 auto;
}

.form-container-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.form-container-narrow > p {
    margin-bottom: 2rem;
    color: #555;
}

.booking-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #8b5a3c;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #8b5a3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #6d4430;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #999;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 200;
}

.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;
}

.cookie-content a {
    color: #8b5a3c;
}

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

.cookie-buttons button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

#cookie-accept {
    background-color: #8b5a3c;
    color: #ffffff;
}

#cookie-accept:hover {
    background-color: #6d4430;
}

#cookie-reject {
    background-color: #555;
    color: #ffffff;
}

#cookie-reject:hover {
    background-color: #444;
}

.services-detail {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8ddd3;
}

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

.service-detail-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.price-large {
    font-size: 1.75rem;
    color: #8b5a3c;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b5a3c;
    font-weight: bold;
}

.contact-info-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
    font-weight: 600;
}

.contact-details {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.contact-details p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.contact-details strong {
    color: #2c2c2c;
    font-weight: 600;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1.25rem;
    color: #444;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: #444;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #8b5a3c;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 600;
}

.thanks-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thanks-content .text-link {
    display: inline-block;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .service-card {
        width: 100%;
    }

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

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