* {
    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: #333;
    overflow-x: hidden;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

.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;
    min-width: 300px;
}

.cookie-content a {
    color: #4da6ff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #28a745;
    color: white;
}

.btn-accept:hover {
    background: #218838;
}

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

.btn-reject:hover {
    background: #5a6268;
}

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

.nav-overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-notice {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.3);
    padding: 6px 12px;
    border-radius: 4px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
}

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

.hero-fullscreen {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #2c5f7f;
}

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

.hero-title-large {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: #2c5f7f;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.intro-narrative {
    padding: 100px 20px;
    background: #f9f9f9;
}

.intro-narrative h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-narrative p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.image-text-overlap {
    display: flex;
    align-items: center;
    padding: 80px 20px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.visual-container {
    flex: 1;
    min-width: 400px;
    background-color: #e8f1f5;
}

.visual-container img {
    width: 100%;
    height: auto;
}

.text-float {
    flex: 1;
    min-width: 350px;
    padding: 40px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.text-float h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #2c3e50;
}

.text-float p {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #666;
    line-height: 1.7;
}

.insight-block {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.insight-block h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.insight-block p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: center;
}

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

.grid-three {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.visual-card {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding-bottom: 30px;
}

.visual-card img {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.visual-card h4 {
    font-size: 1.5rem;
    margin: 0 20px 12px;
    color: #2c3e50;
}

.visual-card p {
    margin: 0 20px;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-inline {
    padding: 80px 20px;
    background: #f0f4f8;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 40px;
    background: white;
    border-left: 5px solid #667eea;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.testimonial-inline blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-inline cite {
    font-style: normal;
    color: #888;
    font-size: 0.95rem;
}

.benefits-reveal {
    padding: 100px 20px;
    background: white;
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.benefit-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #667eea;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.services-showcase {
    padding: 100px 20px;
    background: #fafafa;
}

.services-showcase h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 28px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #5568d3;
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
}

.form-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.form-section > div > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #333;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #5568d3;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

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

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

.footer-columns {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-overlay {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .image-text-overlap {
        flex-direction: column;
    }

    .visual-container {
        min-width: 100%;
    }

    .text-float {
        min-width: 100%;
    }

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

    .service-card {
        max-width: 100%;
    }
}