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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

.header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 600;
}

.ad-disclosure {
    background-color: #2c2c2c;
    padding: 8px 16px;
    border-radius: 4px;
}

.ad-disclosure span {
    color: #999;
    font-size: 0.85rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    background-color: #d4af37;
    color: #1a1a1a;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #c19a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.cta-button-secondary {
    display: inline-block;
    background-color: #fff;
    color: #1a1a1a;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.cta-button-secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

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

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

.intro-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.intro-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.intro-card p {
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
}

.select-service {
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.booking-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    margin-bottom: 40px;
}

.booking-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.booking-intro p {
    color: #666;
    font-size: 1.1rem;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

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

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

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

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

.submit-button {
    width: 100%;
    background-color: #d4af37;
    color: #1a1a1a;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #c19a2e;
}

.testimonials {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.testimonials .section-title {
    color: #fff;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    color: #d4af37;
    font-weight: 600;
}

.footer {
    background-color: #0f0f0f;
    color: #999;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    line-height: 1.7;
}

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

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

.footer-column a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #2c2c2c;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.85rem;
    color: #666;
    max-width: 800px;
    margin: 20px auto 0;
}

.page-hero {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    color: #ccc;
}

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

.about-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image-card {
    flex: 1;
    min-width: 300px;
}

.about-image-card img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text-card {
    flex: 1;
    min-width: 300px;
}

.about-text-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #d4af37;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

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

.story-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.story-wrapper img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.cta-box {
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    background-color: #e0e0e0;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
}

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

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #d4af37;
}

.info-block p {
    color: #555;
    line-height: 1.8;
}

.contact-image-card {
    flex: 1;
    min-width: 300px;
}

.contact-image-card img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.map-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.map-section p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.thanks-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 10px;
}

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

.thanks-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-box p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
}

.service-confirmation p {
    color: #333;
    font-size: 1.1rem;
}

.thanks-subtext {
    font-size: 0.9rem;
    color: #888;
}

.thanks-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.legal-page h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h4 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
}

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

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

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

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

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

.cookie-table th {
    background-color: #1a1a1a;
    color: #fff;
    font-weight: 600;
}

.cookie-table td {
    color: #555;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #ccc;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .services-grid,
    .intro-grid,
    .testimonials-grid,
    .values-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .about-layout,
    .contact-layout,
    .story-wrapper {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}