* {
    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: #fafafa;
}

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

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

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

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

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

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

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

.ad-notice {
    background-color: #f8f9fa;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #6c757d;
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #e8d5c4;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.85), rgba(44, 62, 80, 0.75));
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    max-width: 600px;
}

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

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #d4a574;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-size: 2rem;
    color: #d4a574;
    margin-bottom: 25px;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #555;
}

.intro-image {
    flex: 1;
    background-color: #f5e6d8;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.services-cards h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

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

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

.card-image {
    height: 240px;
    overflow: hidden;
    background-color: #e8d5c4;
}

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

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.card-body p {
    color: #666;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.4rem;
    color: #d4a574;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-link {
    display: inline-block;
    color: #d4a574;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.card-link:hover {
    color: #b8935f;
}

.section-cta {
    text-align: center;
}

.cta-btn-secondary {
    display: inline-block;
    background-color: #d4a574;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

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

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

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

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.booking-info p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.info-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item strong {
    display: block;
    color: #d4a574;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.highlight-item p {
    color: #666;
    margin: 0;
}

.booking-form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

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

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

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

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

.submit-btn {
    width: 100%;
    background-color: #d4a574;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

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

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

.trust-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

.trust-card h4 {
    font-size: 1.4rem;
    color: #d4a574;
    margin-bottom: 15px;
}

.trust-card p {
    color: #666;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

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

.footer-col a:hover {
    color: #d4a574;
}

.footer-disclaimer {
    background-color: #34495e;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h2 {
    font-size: 2.5rem;
    color: #d4a574;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

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

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

.legal-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #d4a574;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

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

.services-page {
    padding: 80px 0;
}

.services-page h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.service-detail {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-detail h2 {
    font-size: 2rem;
    color: #d4a574;
    margin-bottom: 20px;
}

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

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

.contact-page {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.contact-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-item h3 {
    font-size: 1.3rem;
    color: #d4a574;
    margin-bottom: 10px;
}

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

.about-page {
    padding: 80px 0;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.about-content h2 {
    font-size: 2rem;
    color: #d4a574;
    margin-bottom: 25px;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .intro-grid,
    .booking-layout {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

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

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