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

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

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

.nav-brand {
    font-weight: 700;
    font-size: 1.2em;
    color: #1a5f7a;
}

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

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

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

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

.hero-section {
    padding: 140px 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-offset {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-left: 40px;
}

.hero-text-block h1 {
    font-size: 3.5em;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a5f7a;
}

.hero-text-block p {
    font-size: 1.2em;
    margin-bottom: 35px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #1a5f7a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #145266;
}

.hero-image-wrap {
    flex: 1;
    position: relative;
    margin-top: -60px;
    background: #e8f4f8;
    border-radius: 20px;
    overflow: hidden;
}

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

.intro-overlap {
    max-width: 1400px;
    margin: -80px auto 100px;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.intro-card {
    flex: 2;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: 80px;
}

.intro-card h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.intro-card p {
    font-size: 1.1em;
    color: #555;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: #1a5f7a;
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1em;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
}

.section-title-offset {
    margin-left: 100px;
    margin-bottom: 60px;
}

.section-title-offset h2 {
    font-size: 2.8em;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.section-title-offset p {
    font-size: 1.2em;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.offset-left {
    margin-left: 0;
    margin-right: 120px;
}

.offset-right {
    margin-left: 120px;
    margin-right: 0;
    flex-direction: row-reverse;
}

.offset-center {
    margin-left: 60px;
    margin-right: 60px;
}

.offset-left-wide {
    margin-left: 0;
    margin-right: 200px;
}

.offset-right-narrow {
    margin-left: 200px;
    margin-right: 0;
    flex-direction: row-reverse;
}

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

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

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    font-size: 2em;
    color: #1a5f7a;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.service-price {
    margin-bottom: 25px;
}

.price-amount {
    font-size: 2em;
    font-weight: 700;
    color: #1a5f7a;
}

.btn-select {
    padding: 14px 35px;
    background: #1a5f7a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #145266;
}

.booking-diagonal {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.booking-form-wrap {
    flex: 1.5;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}

.booking-form-wrap h2 {
    font-size: 2.2em;
    color: #1a5f7a;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a5f7a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.booking-info-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
}

.info-item h4 {
    font-size: 1.4em;
    color: #1a5f7a;
    margin-bottom: 12px;
}

.info-item p {
    color: #555;
    font-size: 1em;
}

.testimonials-stagger {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
}

.testimonials-stagger h2 {
    font-size: 2.5em;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-wrap {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.offset-up {
    margin-top: 0;
}

.offset-down {
    margin-top: 40px;
}

.testimonial-card p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    color: #1a5f7a;
    font-weight: 600;
}

.why-choose-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.why-image-block {
    flex: 1;
    background: #e8f4f8;
    border-radius: 20px;
    overflow: hidden;
    margin-left: -40px;
}

.why-image-block img {
    width: 100%;
    height: 500px;
}

.why-content-block {
    flex: 1;
}

.why-content-block h2 {
    font-size: 2.5em;
    color: #1a5f7a;
    margin-bottom: 40px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-item h4 {
    font-size: 1.5em;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.why-item p {
    color: #555;
    font-size: 1.05em;
}

.cta-overlap {
    max-width: 1200px;
    margin: 100px auto;
    padding: 80px;
    background: linear-gradient(135deg, #1a5f7a, #2c7a94);
    border-radius: 30px;
    text-align: center;
    transform: rotate(-1deg);
}

.cta-content h2 {
    color: white;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3em;
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #1a5f7a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-secondary:hover {
    transform: scale(1.05);
}

.footer-asymmetric {
    background: #1a1a1a;
    color: white;
    padding: 80px 20px 30px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    gap: 80px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #bbb;
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.footer-disclaimer p {
    font-size: 0.9em;
    color: #bbb;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95em;
}

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

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

.btn-accept {
    background: #1a5f7a;
    color: white;
}

.btn-reject {
    background: #666;
    color: white;
}

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

@media (max-width: 1024px) {
    .floating-nav {
        flex-wrap: wrap;
        top: 10px;
        padding: 15px 20px;
    }

    .hero-offset {
        flex-direction: column;
    }

    .hero-text-block h1 {
        font-size: 2.5em;
    }

    .intro-overlap {
        flex-direction: column;
        margin-top: 40px;
    }

    .intro-card {
        margin-left: 0;
    }

    .service-card {
        flex-direction: column;
    }

    .offset-right,
    .offset-right-narrow {
        flex-direction: column;
    }

    .offset-left,
    .offset-right,
    .offset-center,
    .offset-left-wide,
    .offset-right-narrow {
        margin-left: 0;
        margin-right: 0;
    }

    .booking-diagonal {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials-wrap {
        flex-direction: column;
    }

    .offset-down {
        margin-top: 0;
    }

    .why-choose-offset {
        flex-direction: column;
    }

    .why-image-block {
        margin-left: 0;
    }

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

.thanks-section {
    max-width: 800px;
    margin: 150px auto 100px;
    padding: 80px 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-section h1 {
    font-size: 3em;
    color: #1a5f7a;
    margin-bottom: 25px;
}

.thanks-section p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-section .service-selected {
    display: inline-block;
    padding: 15px 30px;
    background: #e8f4f8;
    color: #1a5f7a;
    border-radius: 10px;
    font-weight: 700;
    margin: 20px 0;
}

.thanks-section a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #1a5f7a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-section a:hover {
    background: #145266;
}