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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #c0392b;
}

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

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

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

.hero-section {
    display: flex;
    min-height: 600px;
    background-color: #fef9f5;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 35px;
    max-width: 550px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #c0392b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #a93226;
}

.hero-image {
    flex: 1;
    background-color: #e8ddd0;
    overflow: hidden;
}

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

.intro-cards {
    padding: 90px 60px;
    background-color: #ffffff;
}

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

.info-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
}

.info-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8ddd0;
}

.info-card h3 {
    padding: 25px 25px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.info-card p {
    padding: 0 25px 25px;
    color: #5d6d7e;
    font-size: 15px;
}

.services-showcase {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

.services-showcase h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #5d6d7e;
    font-size: 17px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    flex: 1 1 calc(50% - 18px);
    min-width: 400px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e8ddd0;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-info p {
    color: #5d6d7e;
    margin-bottom: 20px;
    font-size: 15px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: #c0392b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.booking-section {
    padding: 90px 60px;
    background-color: #fef9f5;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #5d6d7e;
    margin-bottom: 40px;
}

.booking-form {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.selected-service-display {
    padding: 12px;
    background-color: #f8f9fa;
    border: 1px solid #d5d8dc;
    border-radius: 6px;
    color: #5d6d7e;
}

.selected-service-display.has-selection {
    background-color: #e8f5e9;
    border-color: #4caf50;
    color: #2c3e50;
    font-weight: 600;
}

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

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

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.testimonials {
    padding: 90px 60px;
    background-color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #c0392b;
}

.testimonial-card p {
    font-size: 16px;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-card .author {
    display: block;
    font-size: 14px;
    color: #5d6d7e;
    font-weight: 600;
}

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

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

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

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

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

.cookie-content p {
    flex: 1;
    color: #ecf0f1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #6c7a7b;
}

@media (max-width: 768px) {
    .main-nav {
        padding: 15px 30px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding: 50px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image {
        min-height: 300px;
    }

    .intro-cards,
    .services-showcase,
    .booking-section,
    .testimonials {
        padding: 60px 30px;
    }

    .card-grid,
    .services-grid,
    .testimonial-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .main-footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-banner {
        padding: 20px 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}