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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 15px;
    border-bottom: 1px solid #ddd;
}

.ad-disclosure p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #d4af37;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #c19b2a;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

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

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

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

.hero-section {
    position: relative;
    height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.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;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 35px;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    background-color: #d4af37;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #c19b2a;
    transform: translateY(-2px);
}

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

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

.container-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.intro-section {
    background-color: #f9f9f9;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.featured-services {
    background-color: #ffffff;
}

.featured-services h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c2c2c;
    font-weight: 700;
    text-align: center;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.service-info p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #666;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    margin: 10px 0;
}

.btn-select {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-select:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.experience-section {
    background-color: #f9f9f9;
}

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.link-subtle {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-subtle:hover {
    color: #c19b2a;
}

.split-image {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.booking-section {
    background-color: #ffffff;
}

.booking-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 700;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background-color: #d4af37;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #c19b2a;
    transform: translateY(-2px);
}

.testimonials-section {
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
}

.testimonial-author {
    margin-top: 15px;
    font-style: italic;
    color: #d4af37;
    font-size: 15px;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding-top: 60px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    background-color: #0f0f0f;
    padding: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    color: #999;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.copyright {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.page-header {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #cccccc;
}

.services-detail {
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.detail-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 700;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    margin: 15px 0;
}

.detail-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 15px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.about-content {
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 700;
}

.about-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.about-image-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 30px;
}

.image-with-caption img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 15px;
    font-style: italic;
}

.values-list {
    margin-top: 40px;
}

.value-item {
    margin-bottom: 35px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    color: #555;
}

.container-split-about {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 700;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.split-image-about {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.cta-section-about {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 50px 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cta-section-about h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 700;
}

.cta-section-about p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #d4af37;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c19b2a;
    transform: translateY(-2px);
}

.contact-info {
    background-color: #ffffff;
}

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

.contact-card {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 600;
}

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

.email-display {
    color: #333;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-top: 15px;
}

.location-section {
    background-color: #f9f9f9;
}

.location-section h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: 700;
}

.location-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.directions {
    flex: 1;
}

.directions h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 25px;
    color: #2c2c2c;
    font-weight: 600;
}

.directions h3:first-child {
    margin-top: 0;
}

.directions p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.map-placeholder {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.map-placeholder p {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.faq-section {
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-cta {
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #cccccc;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.booking-summary {
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.booking-summary h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 600;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.summary-label {
    font-weight: 600;
    color: #333;
}

.summary-value {
    color: #555;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 600;
    text-align: center;
}

.next-steps ol {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 25px;
}

.next-steps li {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c2c2c;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #2c2c2c;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.contact-info-thanks {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.contact-info-thanks p {
    font-size: 15px;
    margin-bottom: 8px;
}

.legal-page {
    background-color: #ffffff;
}

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

.update-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 600;
}

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

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

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

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

.legal-page a {
    color: #d4af37;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

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

    .nav-links {
        display: none;
    }

    .container-split,
    .container-split-about,
    .location-content,
    .service-detail-card {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

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

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

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