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

.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;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-brand {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a4d6d;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 4px 12px;
    background: #f0f0f0;
    border-radius: 15px;
}

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

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero-fullscreen {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-image-overlay {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 109, 0.7), rgba(42, 95, 127, 0.5));
}

.hero-overlay-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 40px;
}

.hero-overlay-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.hero-overlay-content p {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

.story-intro {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2c3e50;
    font-weight: 300;
}

.visual-block {
    width: 100%;
    margin: 0;
}

.image-dominant {
    width: 100%;
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.overlay-text-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    max-width: 600px;
    border-radius: 4px;
}

.overlay-text-box h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a4d6d;
    line-height: 1.3;
}

.overlay-text-box p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
}

.services-reveal {
    padding: 120px 20px;
    background: white;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: #1a4d6d;
}

.services-visual-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: white;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.service-details {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a4d6d;
}

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

.price-tag {
    font-size: 2rem;
    font-weight: 600;
    color: #2a5f7f;
    margin-bottom: 25px;
}

.btn-select {
    background: #1a4d6d;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-select:hover {
    background: #2a5f7f;
}

.testimonial-inline {
    padding: 100px 20px;
    background: #1a4d6d;
    color: white;
}

.testimonial-inline blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    font-weight: 300;
    border: none;
    text-align: center;
}

.testimonial-inline cite {
    display: block;
    margin-top: 30px;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

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

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

.form-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    color: #1a4d6d;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
}

.booking-form {
    background: white;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    background: #1a4d6d;
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #2a5f7f;
}

.trust-block {
    padding: 100px 20px;
    background: white;
}

.trust-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.trust-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a4d6d;
}

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

.site-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.active {
    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.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #2a5f7f;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.contact-page {
    padding: 140px 20px 100px;
    min-height: 100vh;
}

.contact-page h1 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: #1a4d6d;
}

.contact-info-grid {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-item {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 4px;
}

.contact-info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a4d6d;
}

.contact-info-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-page {
    padding: 140px 20px 100px;
    min-height: 100vh;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #1a4d6d;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2a5f7f;
}

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

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.thanks-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a4d6d, #2a5f7f);
    padding: 20px;
}

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

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-home {
    display: inline-block;
    background: white;
    color: #1a4d6d;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

    .hero-overlay-content p {
        font-size: 1.1rem;
    }

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

    .service-image {
        min-height: 300px;
    }

    .service-details {
        padding: 40px 30px;
    }

    .trust-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .contact-info-grid {
        flex-direction: column;
    }
}