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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #fafafa;
}

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #6b5a48;
}

.nav {
    display: flex;
    gap: 32px;
}

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

.nav a:hover {
    color: #6b5a48;
}

.hero-card {
    margin-top: 0;
}

.hero-image {
    height: 520px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.4);
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    max-width: 700px;
    border-radius: 8px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
}

.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #6b5a48;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.services-grid {
    padding: 80px 0;
    background-color: #f9f7f5;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #6b5a48;
}

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

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 360px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    height: 240px;
    overflow: hidden;
}

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

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
}

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #6b5a48;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #6b5a48;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #55483a;
}

.trust-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.trust-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #6b5a48;
    text-align: center;
}

.trust-card > p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

.trust-points {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-point {
    flex: 1;
    text-align: center;
}

.trust-point h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.trust-point p {
    font-size: 15px;
    color: #666;
}

.form-section {
    padding: 80px 0;
    background-color: #f9f7f5;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #6b5a48;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 32px;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b5a48;
}

.submit-btn {
    background-color: #6b5a48;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #55483a;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff5e8;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #d9a84a;
    border-radius: 6px;
}

.disclaimer-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #6b5a48;
}

.disclaimer-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.footer {
    background-color: #3a3330;
    color: #d9d9d9;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: #6b5a48;
    color: #fff;
}

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

.page-hero {
    background: linear-gradient(135deg, #6b5a48 0%, #8d7a6a 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    font-weight: 300;
}

.about-intro {
    padding: 80px 0;
    background-color: #fff;
}

.about-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #6b5a48;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background-color: #f9f7f5;
}

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

.value-card {
    background: #fff;
    padding: 36px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #6b5a48;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.approach-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.approach-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #6b5a48;
}

.approach-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-detail {
    padding: 80px 0;
    background-color: #fff;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-card h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #6b5a48;
    text-align: center;
}

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

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

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
}

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

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

.service-detail-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-text ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail-text ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: #666;
}

.service-detail-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b5a48;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #6b5a48;
}

.cta-section {
    padding: 80px 0;
    background-color: #f9f7f5;
}

.cta-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #6b5a48;
}

.cta-card p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.cta-link {
    display: inline-block;
    background-color: #6b5a48;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #55483a;
}

.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info-card,
.contact-map-card {
    flex: 1;
}

.contact-info-card h2,
.contact-map-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #6b5a48;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.contact-map-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.contact-note {
    padding: 60px 0;
    background-color: #f9f7f5;
}

.note-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #6b5a48;
}

.note-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #6b5a48;
}

.note-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #6b5a48;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-card h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #6b5a48;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 28px;
}

.thanks-details {
    background-color: #f9f7f5;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 16px;
    color: #333;
}

.thanks-note {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-primary {
    background-color: #6b5a48;
    color: #fff;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

.next-steps {
    padding: 80px 0;
    background-color: #f9f7f5;
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #6b5a48;
}

.steps-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background: #fff;
    padding: 36px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #6b5a48;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.step-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 0;
    background-color: #fff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #6b5a48;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #333;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #444;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-date {
    margin-top: 40px;
    font-size: 14px;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav {
        gap: 16px;
        font-size: 14px;
    }

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

    .cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .trust-points {
        flex-direction: column;
    }

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

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

    .about-card,
    .service-detail-content,
    .contact-grid {
        flex-direction: column;
    }

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

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