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

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

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f5d;
}

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

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

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

.hero-card {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 600px;
    background-color: #f9f9f9;
}

.hero-content {
    flex: 1;
    padding: 60px;
    background-color: #2d5f5d;
    color: #ffffff;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    min-height: 600px;
    background-color: #f5e6e8;
}

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

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2d5f5d;
}

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

.services-preview {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-preview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d5f5d;
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5e6e8;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5f5d;
}

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
    min-height: 60px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f5d;
    margin-bottom: 18px;
}

.select-service {
    width: 100%;
    padding: 12px 25px;
    background-color: #2d5f5d;
    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: #1f4442;
}

.select-service.selected {
    background-color: #4a8b87;
}

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

.form-card {
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2d5f5d;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 16px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.submit-btn {
    padding: 15px 40px;
    background-color: #2d5f5d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

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

.trust-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d5f5d;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.testimonial-author {
    font-weight: 600;
    color: #2d5f5d;
    font-size: 14px;
}

.info-cards {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5f5d;
}

.info-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a3938;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #8da9a7;
}

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #2d5f5d;
    border-bottom: 1px solid #2d5f5d;
    padding: 25px 0;
    margin-bottom: 25px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d5f5d;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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;
    margin: 0;
}

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

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

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

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

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

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

.legal-page {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.legal-page .container {
    max-width: 900px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-page h1 {
    font-size: 36px;
    color: #2d5f5d;
    margin-bottom: 40px;
}

.legal-page section {
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    color: #2d5f5d;
    margin-bottom: 15px;
    margin-top: 10px;
}

.legal-page h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    margin-top: 15px;
}

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

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

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

.legal-page a {
    color: #2d5f5d;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1f4442;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #2d5f5d;
}

.cookie-table td {
    color: #555;
}

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

    .hero-content {
        min-height: auto;
        padding: 40px 30px;
    }

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

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

    .service-card {
        width: calc(50% - 15px);
    }

    .testimonials-grid,
    .info-grid,
    .footer-grid {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .service-card {
        width: 100%;
    }

    .intro-card,
    .form-card {
        padding: 30px;
    }

    .legal-page .container {
        padding: 30px;
    }
}

.page-hero {
    background: linear-gradient(135deg, #2d5f5d 0%, #4a8b87 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.story-section,
.approach-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.content-card h2,
.approach-card h2 {
    font-size: 32px;
    color: #2d5f5d;
    margin-bottom: 25px;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d5f5d;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.promise-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5f5d 0%, #4a8b87 100%);
}

.promise-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.promise-card h2 {
    font-size: 36px;
    color: #2d5f5d;
    margin-bottom: 25px;
}

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

.services-detail {
    padding: 80px 0;
    background-color: #ffffff;
}

.duration {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.additional-info {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.info-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.info-box h2 {
    font-size: 28px;
    color: #2d5f5d;
    margin-bottom: 20px;
}

.info-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    justify-content: center;
}

.contact-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.contact-note {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #2d5f5d;
    max-width: 900px;
    margin: 0 auto;
}

.contact-note h3 {
    font-size: 24px;
    color: #2d5f5d;
    margin-bottom: 15px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.thanks-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.thanks-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #2d5f5d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.booking-details {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: left;
}

.booking-details h3 {
    font-size: 20px;
    color: #2d5f5d;
    margin-bottom: 15px;
}

.detail-row {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-note {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #2d5f5d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1f4442;
}

.btn-secondary {
    background-color: #ffffff;
    color: #2d5f5d;
    border: 2px solid #2d5f5d;
}

.btn-secondary:hover {
    background-color: #f0f7f7;
}

.next-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.next-steps h2 {
    font-size: 32px;
    color: #2d5f5d;
    text-align: center;
    margin-bottom: 40px;
}

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

.step-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2d5f5d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

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

@media (max-width: 968px) {
    .values-grid,
    .contact-grid,
    .steps-grid {
        flex-direction: column;
    }

    .value-card,
    .contact-card,
    .step-card {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .thanks-card {
        padding: 40px 30px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .content-card,
    .approach-card,
    .promise-card {
        padding: 30px;
    }
}