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

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

.ad-disclosure {
    background: #f5f5f5;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.header-card {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-card .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #000;
}

.nav-link.active {
    color: #000;
    border-bottom: 2px solid #000;
}

.hero-card {
    margin: 30px 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #e8d5c4;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 60px 40px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #f0f0f0;
    font-weight: 400;
}

.intro-section {
    padding: 80px 20px;
}

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

.intro-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 280px;
    max-width: 500px;
}

.intro-card.highlight {
    background: #2c2c2c;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
}

.intro-text-bold {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.insight-cards {
    padding: 80px 20px;
    background: #f5f5f5;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.section-heading.centered {
    text-align: center;
}

.card-row-three {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.insight-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.insight-icon {
    font-size: 32px;
    font-weight: 700;
    color: #999;
    margin-bottom: 20px;
}

.insight-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.insight-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.services-preview {
    padding: 80px 20px;
}

.card-grid-services {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-image-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e0d5c7;
}

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

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.service-btn {
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.service-btn:hover {
    background: #1a1a1a;
}

.form-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

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

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #3a3a3a;
}

.form-input,
.form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #2c2c2c;
}

.form-submit {
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.form-submit:hover {
    background: #1a1a1a;
}

.trust-section {
    padding: 80px 20px;
}

.trust-card-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2c2c2c;
    flex: 1;
    min-width: 280px;
}

.trust-quote {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 15px;
    font-style: italic;
}

.trust-author {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #fff;
}

.footer-disclaimer {
    border-top: 1px solid #444;
    padding-top: 30px;
    margin-top: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #999;
    line-height: 1.7;
    max-width: 900px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
    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;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: #3a3a3a;
    min-width: 250px;
}

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

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

.cookie-btn.accept {
    background: #2c2c2c;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #1a1a1a;
}

.cookie-btn.reject {
    background: #e0e0e0;
    color: #3a3a3a;
}

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

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

.thanks-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

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

.thanks-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-service {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 25px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
}

.thanks-home-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.thanks-home-btn:hover {
    background: #1a1a1a;
}

.content-page {
    padding: 80px 20px;
    min-height: 60vh;
}

.content-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.section-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.contact-info-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 16px;
    color: #2c2c2c;
    font-weight: 500;
}

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

.about-image-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #d5c7ba;
}

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

.about-text-card {
    flex: 1;
    min-width: 300px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-heading {
        font-size: 28px;
    }

    .form-card {
        padding: 30px 20px;
    }

    .content-card {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 32px;
    }

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