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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

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

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

.logo {
    font-size: 26px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background-color: #3a3a3a;
}

.hero-section 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;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    color: #f0f0f0;
    max-width: 700px;
}

.intro-section {
    background-color: #f9f7f4;
    padding: 80px 40px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    font-size: 24px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #3a3a3a;
}

.image-text-section {
    background-color: #ffffff;
    padding: 100px 40px;
}

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

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #2c2c2c;
}

.text-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.image-content {
    flex: 1;
    background-color: #e8e4df;
}

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

.services-pricing-section {
    background-color: #2c2c2c;
    padding: 100px 40px;
}

.services-pricing-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
    color: #ffffff;
}

.section-intro {
    font-size: 19px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto;
    color: #d0d0d0;
}

.services-stack {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    background-color: #e8e4df;
}

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

.service-details {
    padding: 40px;
}

.service-details h3 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #2c2c2c;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.price {
    font-size: 28px;
    font-weight: 600;
    color: #8b6f47;
}

.select-service {
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #6f5838;
}

.booking-form-section {
    background-color: #f9f7f4;
    padding: 100px 40px;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 400;
    color: #2c2c2c;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.submit-btn {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1a1a1a;
}

.philosophy-section {
    background-color: #8b6f47;
    padding: 100px 40px;
}

.philosophy-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    color: #ffffff;
}

.philosophy-grid {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-item {
    flex: 1;
}

.philosophy-item p {
    font-size: 19px;
    line-height: 1.8;
    color: #f5f5f5;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 40px 30px 40px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-column a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 30px 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #a0a0a0;
}

.footer-bottom {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 14px;
    color: #808080;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2c2c2c;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8b6f47;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #6f5838;
}

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.cookie-btn.reject:hover {
    background-color: #d0d0d0;
}

.page-header {
    background-color: #2c2c2c;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 400;
}

.about-intro {
    background-color: #f9f7f4;
    padding: 80px 40px;
}

.lead-text {
    font-size: 26px;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #2c2c2c;
}

.story-section {
    background-color: #ffffff;
    padding: 100px 40px;
}

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

.story-content h2 {
    font-size: 34px;
    margin: 50px 0 25px 0;
    font-weight: 400;
    color: #2c2c2c;
}

.story-content h2:first-child {
    margin-top: 0;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.story-content img {
    width: 100%;
    height: auto;
    margin: 50px 0;
    object-fit: cover;
    background-color: #e8e4df;
}

.services-intro {
    font-size: 19px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px auto;
    color: #4a4a4a;
}

.services-detail-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

.service-detail-card {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    background-color: #f9f7f4;
}

.service-detail-image {
    width: 100%;
    background-color: #e8e4df;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-detail-content {
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c2c2c;
}

.service-detail-content h3 {
    font-size: 24px;
    margin: 35px 0 15px 0;
    font-weight: 500;
    color: #2c2c2c;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.service-detail-content ul {
    margin: 20px 0 20px 30px;
}

.service-detail-content li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.price-tag {
    display: inline-block;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.cta-section {
    max-width: 800px;
    margin: 60px auto 0 auto;
    text-align: center;
    padding: 60px 40px;
    background-color: #2c2c2c;
}

.cta-section h2 {
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-section p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6f5838;
}

.contact-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

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

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 45px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2c2c2c;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-map {
    flex: 1;
    background-color: #e8e4df;
}

.contact-map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.contact-note {
    max-width: 1200px;
    margin: 50px auto 0 auto;
    padding: 30px;
    background-color: #f9f7f4;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-section {
    background-color: #f9f7f4;
    padding: 100px 40px;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.thanks-info {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #2c2c2c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a1a1a;
}

.btn-secondary {
    background-color: #8b6f47;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #6f5838;
}

.legal-page {
    background-color: #ffffff;
    padding: 80px 40px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2c2c2c;
}

.legal-page h2 {
    font-size: 28px;
    margin: 45px 0 20px 0;
    font-weight: 500;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    font-weight: 500;
    color: #2c2c2c;
}

.legal-page h4 {
    font-size: 18px;
    margin: 25px 0 12px 0;
    font-weight: 500;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.cookie-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.cookie-table th {
    background-color: #f9f7f4;
    font-weight: 600;
    color: #2c2c2c;
}

.cookie-table td {
    font-size: 15px;
    color: #4a4a4a;
}

@media (max-width: 1024px) {
    .section-grid,
    .contact-grid {
        flex-direction: column;
    }

    .philosophy-grid {
        flex-direction: column;
        gap: 30px;
    }

    .hero-overlay h1 {
        font-size: 42px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .service-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}