* {
    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: #2c3e50;
    background-color: #ffffff;
}

.header-split {
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #1a5f7a;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background-color: #f4f7f9;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-left p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background-color: #155266;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #d4e4ed;
}

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

.intro-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-content-offset {
    flex: 1.3;
}

.intro-content-offset h2 {
    font-size: 2.2rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.intro-content-offset p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.intro-image-float {
    flex: 0.7;
    background-color: #e8f0f5;
}

.intro-image-float img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-split {
    padding: 6rem 5%;
    background-color: #fafbfc;
}

.services-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.services-header-center h2 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-header-center p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.service-block-left,
.service-block-right {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.service-block-right {
    flex-direction: row-reverse;
}

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

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

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

.service-details h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-details p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-tag {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    background-color: #e8f0f5;
    color: #1a5f7a;
    border-radius: 20px;
    font-weight: 600;
}

.service-price-action {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #1a5f7a;
}

.btn-select-service {
    padding: 0.9rem 1.8rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #155266;
    transform: translateY(-2px);
}

.booking-form-section {
    padding: 6rem 5%;
    background-color: #1a5f7a;
}

.form-container-split {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.form-left-info {
    flex: 1;
    color: #ffffff;
}

.form-left-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.form-left-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.trust-indicators {
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.trust-icon {
    width: 24px;
    height: 24px;
    background-color: #57c4a8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-right-form {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

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

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

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #1a5f7a;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #155266;
    transform: translateY(-2px);
}

.testimonials-stacked {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.testimonials-stacked h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a5f7a;
    margin-bottom: 4rem;
    font-weight: 800;
}

.testimonial-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #1a5f7a;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.info-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.info-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-text-side {
    flex: 1;
}

.info-text-side h3 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-text-side p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.footer-split {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 5% 1rem;
}

.footer-main {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 700;
}

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

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #34495e;
    border-radius: 6px;
}

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

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

.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 5%;
    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: 2rem;
}

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

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

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

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

.btn-cookie-accept {
    background-color: #57c4a8;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #6c7a7b;
}

.page-hero-split {
    padding: 5rem 5%;
    background-color: #f4f7f9;
    text-align: center;
}

.hero-content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-narrow h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-content-narrow p {
    font-size: 1.3rem;
    color: #5a6c7d;
}

.story-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-left {
    flex: 1;
}

.story-left h2 {
    font-size: 2.3rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-left p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-right {
    flex: 1;
    background-color: #d4e4ed;
}

.story-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-stacked {
    padding: 6rem 5%;
    background-color: #fafbfc;
}

.values-stacked h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a5f7a;
    margin-bottom: 4rem;
    font-weight: 800;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid #1a5f7a;
}

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

.value-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 5%;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.team-image {
    flex: 1;
    background-color: #d4e4ed;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2.3rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cta-centered {
    text-align: center;
    padding: 5rem 5%;
    background-color: #f4f7f9;
}

.cta-centered h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-centered p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #155266;
    transform: translateY(-2px);
}

.services-detail-split {
    padding: 4rem 5%;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-lead {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.info-block {
    font-size: 0.95rem;
    color: #4a5568;
}

.info-block strong {
    color: #2c3e50;
}

.service-price-display {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1rem;
    color: #5a6c7d;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a5f7a;
}

.btn-book {
    display: inline-block;
    padding: 1rem 2.2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-book:hover {
    background-color: #155266;
    transform: translateY(-2px);
}

.contact-split {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 2.3rem;
    color: #1a5f7a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5f7a;
    border-radius: 4px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

.contact-right {
    flex: 1;
    background-color: #d4e4ed;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-block-centered {
    padding: 5rem 5%;
    background-color: #fafbfc;
}

.info-block-centered h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a5f7a;
    margin-bottom: 3rem;
    font-weight: 800;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1a5f7a;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-centered {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background-color: #f4f7f9;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-info {
    text-align: left;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    border-left: 4px solid #1a5f7a;
}

.thanks-info p {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thanks-info ul {
    list-style-position: inside;
    color: #4a5568;
}

.thanks-info ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #155266;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #1a5f7a;
    text-decoration: none;
    border: 2px solid #1a5f7a;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

.thanks-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.legal-page {
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 2rem;
    font-weight: 800;
}

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

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

.legal-content h4 {
    font-size: 1.1rem;
    color: #4a5568;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.legal-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-asymmetric,
    .service-block-left,
    .service-block-right,
    .form-container-split,
    .testimonial-grid,
    .info-asymmetric,
    .story-split,
    .team-split,
    .contact-split,
    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .nav-right {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

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