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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c5f5d;
}

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

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

.nav-primary a:hover {
    color: #2c5f5d;
}

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

.hero-section {
    background-color: #e8f4f3;
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    color: #1a3938;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background-color: #2c5f5d;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.hero-image {
    flex: 1;
    background-color: #d0e5e4;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.intro-section {
    padding: 70px 20px;
    background-color: #fff;
}

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

.intro-card h2 {
    font-size: 32px;
    color: #1a3938;
    margin-bottom: 24px;
}

.intro-card p {
    font-size: 17px;
    color: #666;
    margin-bottom: 16px;
}

.services-grid {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #1a3938;
    margin-bottom: 50px;
}

.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 4px 12px rgba(0,0,0,0.08);
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 22px;
    color: #1a3938;
    margin-bottom: 12px;
}

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

.card-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f5d;
    margin-bottom: 16px;
}

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

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

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 32px;
    color: #1a3938;
    margin-bottom: 12px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.booking-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #2c5f5d;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 80px 20px;
    background-color: #f4f4f4;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.trust-content img {
    width: 50%;
    border-radius: 10px;
    object-fit: cover;
    background-color: #d0d0d0;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 32px;
    color: #1a3938;
    margin-bottom: 20px;
}

.trust-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.link-secondary {
    color: #2c5f5d;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #2c5f5d;
    transition: opacity 0.3s;
}

.link-secondary:hover {
    opacity: 0.7;
}

.footer-main {
    background-color: #1a3938;
    color: #fff;
    padding: 50px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #a8d5d3;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 10px;
}

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

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

.disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #999;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: #2c5f5d;
    color: #fff;
}

.btn-reject {
    background-color: #555;
    color: #fff;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .nav-primary {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

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

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

    .service-card {
        width: 100%;
    }

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

    .trust-content img {
        width: 100%;
    }

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

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