* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #34495e;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #546e7a;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.intro-reverse {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #f8f9fa;
}

.intro-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.intro-text {
    flex: 1;
    padding: 3rem 3.5rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.services-showcase {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.services-header p {
    font-size: 1.1rem;
    color: #546e7a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 0.95rem;
    margin: 0 1.5rem 1rem;
    color: #546e7a;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 0 1.5rem 1.2rem;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

.form-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.form-intro p {
    font-size: 1.05rem;
    color: #546e7a;
}

.booking-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.testimonials {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial .author {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 600;
}

.info-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    align-items: center;
}

.info-text {
    flex: 1;
    padding: 3rem 3.5rem;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.info-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

.info-image {
    flex: 1;
    background-color: #f8f9fa;
}

.info-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.disclaimer-section {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 2rem;
    margin: 4rem auto;
    max-width: 1200px;
    border-radius: 8px;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept {
    padding: 0.7rem 1.5rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-reject {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-hero {
    background-color: #ecf0f1;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.page-hero p {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.content-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    align-items: center;
    padding: 0 2rem;
}

.content-text {
    flex: 1;
    padding: 2rem 3rem;
}

.content-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.content-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
    line-height: 1.7;
}

.content-image {
    flex: 1;
    background-color: #f8f9fa;
}

.content-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.content-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1400px;
    margin: 5rem auto;
    align-items: center;
    padding: 0 2rem;
}

.values-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.team-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.team-section p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    max-width: 900px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-detail {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-item {
    display: flex;
    margin-bottom: 5rem;
    align-items: center;
    gap: 3rem;
}

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

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
    line-height: 1.7;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    list-style: disc;
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 0.6rem;
}

.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #2980b9;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

.contact-info {
    flex: 1.2;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.contact-info > p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #546e7a;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

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

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 700px;
}

.location-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.location-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.location-section > p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #546e7a;
    line-height: 1.7;
}

.location-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.location-item {
    flex: 1;
    min-width: 250px;
}

.location-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
}

.location-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #546e7a;
}

.confirmation-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.confirmation-details ul {
    padding-left: 1.5rem;
}

.confirmation-details ul li {
    list-style: disc;
    font-size: 1.05rem;
    color: #546e7a;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.selected-service-info {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.selected-service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
}

.selected-service-info p {
    font-size: 1.1rem;
    color: #27ae60;
    font-weight: 600;
}

.next-steps {
    margin-bottom: 2.5rem;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
}

.thanks-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.support-info p {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
    line-height: 1.8;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page ul li {
    list-style: disc;
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

.legal-page strong {
    color: #2c3e50;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

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

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #546e7a;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-reverse,
    .info-split,
    .content-split,
    .content-split-reverse,
    .service-detail-item,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-text,
    .info-text,
    .content-text,
    .service-detail-content,
    .contact-info {
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .testimonials {
        flex-direction: column;
    }

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

    .location-features {
        flex-direction: column;
    }

    .main-nav {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
