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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0077be;
}

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

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

.nav-links a:hover {
    color: #0077be;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #7f8c8d;
    font-style: italic;
    padding-left: 2rem;
    border-left: 1px solid #ecf0f1;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #0077be 0%, #00a8e8 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #0077be;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hero-image {
    flex: 1;
    background: #003d5c;
    position: relative;
    overflow: hidden;
}

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

.intro-text {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0077be;
    text-align: center;
}

.intro-text p {
    font-size: 1.15rem;
    color: #34495e;
    text-align: center;
}

.features-asymmetric {
    padding: 6rem 2rem;
    background: #ffffff;
}

.feature-large {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.feature-large img {
    flex: 1;
    border-radius: 12px;
    object-fit: cover;
    background: #e8f4f8;
}

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

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0077be;
    margin-bottom: 1.5rem;
}

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

.btn-select:hover {
    background: #005a8d;
    transform: translateY(-1px);
}

.feature-split {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.feature-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    background: #e8f4f8;
}

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

.feature-item p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.full-width-cta {
    padding: 5rem 2rem;
    background: #0077be;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.additional-services {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.additional-services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #0077be;
}

.service-cards {
    display: flex;
    gap: 2.5rem;
}

.card {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: #e8f4f8;
}

.card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.7rem;
    color: #2c3e50;
}

.card p {
    padding: 0 1.5rem 1rem;
    color: #555;
    font-size: 1rem;
}

.card .price {
    padding: 0 1.5rem 0.5rem;
}

.card .btn-select {
    margin: 0 1.5rem 1.5rem;
}

.safety-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0077be;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    background: #e8f4f8;
}

.booking-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.booking-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0077be;
}

.booking-section > .container-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

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

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #0077be;
}

.selected-service-display {
    padding: 1.2rem;
    background: #e8f4f8;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #0077be;
    text-align: center;
}

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

.btn-submit:hover {
    background: #005a8d;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #f0f0f0;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #0077be;
    font-size: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-col a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

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

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

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

.btn-accept {
    background: #0077be;
    color: #ffffff;
}

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

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

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

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

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

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.page-header {
    background: linear-gradient(135deg, #0077be 0%, #00a8e8 100%);
    color: #ffffff;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-content {
    padding: 6rem 2rem;
    background: #ffffff;
}

.values-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.value-item {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0077be;
}

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

.team-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0077be;
}

.team-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    text-align: center;
}

.cta-section {
    padding: 5rem 2rem;
    background: #0077be;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.services-list {
    padding: 5rem 2rem;
    background: #ffffff;
}

.service-detailed {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    background: #e8f4f8;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.service-info ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0077be;
    font-weight: bold;
}

.price-large {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0077be;
    margin-bottom: 1.5rem;
}

.contact-content {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0077be;
}

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

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

.contact-item p {
    font-size: 1.1rem;
    color: #555;
}

.legal-content {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0077be;
}

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

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

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #555;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #555;
}

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

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

    .feature-large {
        flex-direction: column;
    }

    .feature-split,
    .service-cards,
    .container-split,
    .footer-content,
    .values-grid,
    .service-detailed,
    .service-detailed.reverse {
        flex-direction: column;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }
}