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

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

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

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

.nav-main {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 11px;
    color: #999;
    border: 1px solid #ddd;
    padding: 4px 8px;
    border-radius: 3px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    height: 600px;
    background-color: #e8d5c4;
    overflow: hidden;
}

.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(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px;
}

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

.hero-text h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-hero {
    display: inline-block;
    background-color: #d4a574;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-section {
    padding: 40px 0;
}

.intro-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.intro-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

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

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: transform 0.3s;
}

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

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

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

.card-content {
    padding: 25px;
}

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

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #444;
}

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

.booking-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
}

.booking-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c2c2c;
    text-align: center;
}

.booking-card > p {
    text-align: center;
    margin-bottom: 35px;
    color: #666;
    font-size: 16px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 15px;
    background-color: #d4a574;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-us-section {
    padding: 80px 0;
}

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

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

.feature-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: calc(50% - 15px);
    min-width: 280px;
}

.feature-icon {
    font-size: 32px;
    color: #d4a574;
    margin-bottom: 15px;
}

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

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

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

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

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

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

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

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.disclaimer {
    font-size: 12px;
    color: #aaa;
    line-height: 1.5;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 200;
    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;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #555;
}

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

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

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

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

.btn-cookie-reject {
    background-color: #ddd;
    color: #333;
}

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

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

.thanks-card {
    background-color: #fff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 64px;
    color: #d4a574;
    margin-bottom: 20px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thanks-card p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-back {
    display: inline-block;
    padding: 15px 35px;
    background-color: #d4a574;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.about-hero {
    padding: 80px 0;
    background-color: #f9f5f2;
}

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

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    height: 450px;
    background-color: #e8d5c4;
    border-radius: 10px;
    overflow: hidden;
}

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

.team-section {
    padding: 80px 0;
}

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

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

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: calc(33.333% - 20px);
    min-width: 280px;
}

.member-image {
    height: 280px;
    background-color: #e8d5c4;
}

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

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.member-role {
    font-size: 15px;
    color: #d4a574;
    margin-bottom: 12px;
}

.member-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-card h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.info-item h3 {
    font-size: 18px;
    color: #d4a574;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    height: 500px;
    background-color: #e8d5c4;
    border-radius: 10px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero {
    padding: 60px 0;
    background-color: #f9f5f2;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.services-list-section {
    padding: 80px 0;
}

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

.legal-content {
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #444;
}

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

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

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

.legal-content a {
    color: #d4a574;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .nav-main.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

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

    .service-card {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .feature-card {
        width: 100%;
    }

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

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

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

    .about-image {
        height: 300px;
    }

    .team-member {
        width: 100%;
    }

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