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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    border-left: 1px solid #bdc3c7;
    padding-left: 20px;
    font-style: italic;
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 900px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 700px;
}

.cta-hero {
    background: white;
    color: #2c3e50;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-overlap {
    margin-top: -120px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.overlap-card {
    background: white;
    padding: 60px 80px;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.overlap-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.overlap-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.image-text-layer {
    margin-top: 100px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.layer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.layer-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 80px;
}

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

.layer-text-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.layer-text-box p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    transition: color 0.3s;
}

.cta-inline:hover {
    color: #2980b9;
}

.visual-cards {
    display: flex;
    gap: 0;
    margin-top: 100px;
}

.card-visual {
    flex: 1;
    height: 500px;
    position: relative;
    overflow: hidden;
    background-color: #34495e;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card-visual:hover img {
    transform: scale(1.05);
}

.card-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.card-overlay-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.card-overlay-text p {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonial-visual {
    margin-top: 100px;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.testimonial-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 60px;
}

.testimonial-content blockquote {
    max-width: 800px;
    color: white;
    text-align: center;
}

.testimonial-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.services-preview {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

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

.service-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-item p {
    margin-bottom: 20px;
    color: #555;
    flex-grow: 1;
}

.service-item .price {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.cta-service {
    background: #3498db;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #2980b9;
}

.cta-fullwidth {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.cta-overlay {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 40px;
}

.cta-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-overlay p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-button-large {
    background: white;
    color: #2c3e50;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.booking-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.booking-container > p {
    margin-bottom: 40px;
    color: #555;
    font-size: 1.05rem;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.cta-submit {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-submit:hover {
    background: #34495e;
}

.trust-visual {
    padding: 100px 60px;
    background: #f8f9fa;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.trust-points {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
    text-align: center;
}

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

.trust-item p {
    color: #555;
    line-height: 1.7;
}

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

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

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

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

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

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

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ecf0f1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.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 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.cookie-accept {
    background: #3498db;
    color: white;
}

.cookie-accept:hover {
    background: #2980b9;
}

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

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

.page-container {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 40px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.page-content {
    line-height: 1.8;
    color: #555;
}

.page-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.page-content p {
    margin-bottom: 20px;
}

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

.page-content ul li {
    margin-bottom: 10px;
}

.page-content a {
    color: #3498db;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 15px;
}

.thanks-container {
    text-align: center;
    padding: 100px 40px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c3e50;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
}

.thanks-container a {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #2980b9;
}

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

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

    .overlap-card {
        padding: 40px;
        margin-top: -60px;
    }

    .visual-cards {
        flex-direction: column;
    }

    .trust-points {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .layer-content {
        padding: 20px;
    }

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