* {
    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: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.hero-section {
    display: flex;
    min-height: 520px;
    background-color: #ffffff;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f4f0;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    max-width: 600px;
}

.hero-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #d4a574;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #e8e0d8;
}

.intro-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.intro-card {
    max-width: 800px;
    text-align: center;
}

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.services-grid {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

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

.cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

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

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

.card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #e8e0d8;
}

.card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.card-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    flex: 1;
}

.price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1rem;
}

.select-service {
    padding: 0.9rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.booking-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.form-wrapper {
    max-width: 600px;
    width: 100%;
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f8f4f0;
    color: #1a1a1a;
    font-weight: 500;
}

.btn-submit {
    padding: 1.1rem;
    background-color: #d4a574;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 5rem 2rem;
    background-color: #f8f4f0;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 360px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #d4a574;
    font-weight: 500;
}

.info-bar {
    display: flex;
    gap: 0;
    background-color: #1a1a1a;
    color: #ffffff;
}

.info-item {
    flex: 1;
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid #333;
}

.info-item:last-child {
    border-right: none;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.info-item p {
    font-size: 0.95rem;
    color: #ccc;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #3a3a3a;
    border-radius: 4px;
}

.disclaimer p {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cards-container {
        gap: 1.5rem;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
    }

    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .info-bar {
        flex-direction: column;
    }

    .info-item {
        border-right: none;
        border-bottom: 1px solid #333;
    }

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

    .main-nav {
        width: 100%;
        justify-content: center;
    }
}