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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept {
    background-color: #d4a574;
    color: #fff;
}

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #d4a574;
}

.ad-notice {
    font-size: 11px;
    color: #777;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f9f9f9;
}

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

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

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

.hero {
    margin-top: 0;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(212,165,116,0.4));
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.hero-overlay p {
    font-size: 20px;
    color: #fff;
    max-width: 600px;
}

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

.intro-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    flex: 1;
}

.price {
    font-size: 28px;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 16px;
}

.btn-card {
    padding: 12px 24px;
    background-color: #d4a574;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-card:hover {
    background-color: #c59563;
}

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

.booking-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.booking-content {
    flex: 1;
}

.booking-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.booking-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.booking-form-container {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.booking-form .form-group {
    margin-bottom: 24px;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #d4a574;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-choose {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.features-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #d4a574;
}

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

.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 0 20px;
}

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

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

.footer-block p {
    font-size: 14px;
    color: #ccc;
}

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

.footer-block ul li {
    margin-bottom: 8px;
}

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

.footer-block ul li a:hover {
    color: #d4a574;
}

.footer-disclaimer {
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin-bottom: 30px;
}

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

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

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

.page-header {
    background: linear-gradient(135deg, #d4a574 0%, #c59563 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.story-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

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

.about-values {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.about-values h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #d4a574;
}

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

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

.approach-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.about-commitment {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.about-commitment h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.commitment-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commitment-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.commitment-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.commitment-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #d4a574;
}

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

.services-full {
    padding: 80px 0;
    background-color: #f5f5f5;
}

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

.services-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.info-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 280px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #d4a574;
}

.info-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.contact-info {
    padding: 60px 0;
    background-color: #f5f5f5;
}

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

.contact-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #d4a574;
}

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

.contact-note {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

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

.contact-map h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.map-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.access-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.access-block {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.access-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #d4a574;
}

.access-block p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.contact-faq {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.contact-faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    padding: 32px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

.thanks-section {
    padding: 100px 0;
    background-color: #f5f5f5;
    min-height: 500px;
}

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

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.confirmation-box {
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.confirmation-box h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.confirmation-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.thanks-info {
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #d4a574;
}

.thanks-info ul {
    list-style-position: inside;
    padding-left: 0;
}

.thanks-info ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

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

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

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

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

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

.legal-intro {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: #d4a574;
}

.legal-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 40px;
}

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

.legal-section a {
    color: #d4a574;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #c59563;
}

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

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

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

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

    .intro-wrapper {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .booking-wrapper {
        flex-direction: column;
    }

    .features-cards {
        flex-direction: column;
    }

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

    .story-wrapper {
        flex-direction: column;
    }

    .approach-wrapper {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .thanks-content h1 {
        font-size: 28px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}