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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    background: #4caf50;
    color: white;
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-cookie:hover {
    background: #45a049;
}

.btn-cookie-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px 24px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-links a {
    color: white;
    font-weight: 500;
    transition: opacity 0.3s;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-links a:hover {
    opacity: 0.8;
}

.ad-disclosure {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #1a4d6d;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-hero:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.intro-offset {
    padding: 120px 20px;
    background: #f8f9fa;
}

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

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a4d6d;
}

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

.services-visual {
    padding: 100px 20px;
    background: white;
}

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

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a4d6d;
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 400px;
}

.service-medium {
    flex: 1 1 calc(40% - 15px);
    min-width: 320px;
}

.service-small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.service-image-container {
    width: 100%;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-large .service-image-container {
    height: 350px;
}

.service-medium .service-image-container {
    height: 250px;
}

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

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

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a4d6d;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    flex: 1;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c7a4d;
    margin-bottom: 20px;
}

.btn-service {
    background: #1a4d6d;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #164461;
}

.trust-section {
    padding: 120px 20px;
    background: #f8f9fa;
}

.trust-content-offset {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-content-offset img {
    width: 45%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #d0d0d0;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a4d6d;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.booking-section {
    padding: 100px 20px;
    background: white;
}

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

.booking-wrapper {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.booking-intro {
    text-align: center;
    margin-bottom: 40px;
}

.booking-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a4d6d;
}

.booking-intro p {
    font-size: 18px;
    color: #666;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.selected-service-display {
    background: white;
    padding: 20px;
    border-radius: 4px;
    border-left: 4px solid #2c7a4d;
    display: none;
}

.selected-service-display.show {
    display: block;
}

.selected-service-display h4 {
    margin-bottom: 8px;
    color: #1a4d6d;
}

.btn-submit {
    background: #2c7a4d;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #267041;
}

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

.final-cta-visual {
    width: 100%;
    overflow: hidden;
}

.cta-image-background {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.cta-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 20px;
}

.cta-overlay-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.cta-overlay-content p {
    font-size: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.footer-layered {
    background: #1a1a1a;
    color: white;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    color: #aaa;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-bottom {
    text-align: center;
    padding: 20px;
    background: #0f0f0f;
    color: #888;
    font-size: 14px;
}

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

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

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

    .trust-content-offset {
        flex-direction: column;
    }

    .trust-content-offset img {
        width: 100%;
    }

    .booking-wrapper {
        padding: 30px 20px;
    }

    .footer-main {
        flex-direction: column;
    }

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