* {
    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.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2d7a4f;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.hero-visual {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.content-float {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 80px;
    gap: 60px;
    background-color: #fafafa;
}

.text-block-overlay {
    flex: 1;
    max-width: 550px;
}

.text-block-overlay h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.text-block-overlay p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.content-img {
    flex: 1;
    max-width: 600px;
    border-radius: 12px;
    object-fit: cover;
}

.services-visual {
    padding: 120px 80px;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-center h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    background-color: #f9f9f9;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-info .price {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px 24px;
    background-color: #2d7a4f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #245a3c;
}

.image-text-overlap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 80px;
    gap: 80px;
    background-color: #e8f3ed;
}

.overlap-img {
    flex: 1;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
}

.overlap-text {
    flex: 1;
    max-width: 600px;
}

.overlap-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.overlap-text p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
}

.form-section {
    padding: 100px 80px;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 50px;
}

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

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

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #2d7a4f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
}

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

.disclaimer-section {
    padding: 60px 80px;
    background-color: #fef9e7;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 80px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.7;
}

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

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

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

.footer-col ul li a:hover {
    color: #2d7a4f;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 25px 40px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-hero-small {
    width: 100%;
    height: 50vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background-color: #e8f3ed;
}

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

.page-hero-text {
    position: absolute;
    bottom: 40px;
    left: 80px;
    color: #ffffff;
}

.page-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.content-section {
    padding: 100px 80px;
    background-color: #ffffff;
}

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

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.text-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
}

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

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d7a4f;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.team-visual {
    padding: 80px 80px;
    background-color: #ffffff;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 1.1rem;
    color: #555;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.member {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 30px;
    background-color: #fafafa;
    border-radius: 12px;
}

.member h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.member p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

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

.service-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f3ed;
}

.service-detail-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    object-fit: cover;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 25px;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin: 30px 0;
}

.service-features li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-weight: bold;
}

.btn-book {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d7a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.btn-book:hover {
    background-color: #245a3c;
}

.contact-page {
    padding: 120px 80px;
    background-color: #fafafa;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 1.2rem;
    color: #555;
}

.contact-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2d7a4f;
}

.info-block p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: #e8f3ed;
}

.contact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
}

.thanks-section {
    padding: 150px 80px;
    background-color: #fafafa;
    min-height: 80vh;
}

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

.thanks-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-details {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next-steps {
    background-color: #e8f3ed;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-next-steps ol {
    padding-left: 25px;
}

.thanks-next-steps li {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.btn-primary:hover {
    background-color: #245a3c;
}

.btn-secondary {
    background-color: transparent;
    color: #2d7a4f;
    border: 2px solid #2d7a4f;
}

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

.legal-page {
    padding: 120px 80px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 50px;
}

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d7a4f;
}

.legal-container h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #333;
}

.legal-container p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-container li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-container a {
    color: #2d7a4f;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .content-float,
    .image-text-overlap,
    .content-wrapper,
    .service-detail-item,
    .contact-content {
        flex-direction: column;
    }

    .service-detail-item.reverse {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .values-grid,
    .team-members {
        flex-direction: column;
    }
}