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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    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-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #229954;
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    padding: 80px 40px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-text-block {
    max-width: 620px;
    margin-left: 8%;
    margin-top: 60px;
    z-index: 10;
}

.hero-text-block h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 21px;
    color: #555555;
    line-height: 1.5;
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 500px;
    background: #ecf0f1;
    overflow: hidden;
    border-radius: 8px;
}

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

.floating-cta {
    position: absolute;
    bottom: 12%;
    left: 40px;
    z-index: 15;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.intro-narrow {
    flex: 1;
    max-width: 480px;
    margin-left: 5%;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
}

.insight-card-float {
    flex: 1;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 6px;
    margin-top: -40px;
}

.insight-card-float img {
    width: 100%;
    height: 280px;
    border-radius: 4px;
    margin-bottom: 25px;
    background: #dee2e6;
}

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

.insight-text p {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
}

.services-irregular {
    padding: 100px 40px 120px;
    background: #fafbfc;
}

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 8%;
}

.section-header-left h2 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-left p {
    font-size: 19px;
    color: #666666;
}

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

.service-card {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.service-card.offset-1 {
    margin-left: 5%;
    width: 85%;
}

.service-card.offset-2 {
    margin-left: 15%;
    width: 75%;
}

.service-card.offset-3 {
    margin-left: 8%;
    width: 82%;
}

.service-card.offset-4 {
    margin-left: 18%;
    width: 78%;
}

.service-card.offset-5 {
    margin-left: 3%;
    width: 88%;
}

.service-image {
    width: 40%;
    background: #ecf0f1;
}

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

.service-info {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

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

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

.form-section-diagonal {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}

.form-container-offset {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-left: 5%;
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.form-header p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 35px;
}

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

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

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

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

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

.submit-button {
    padding: 16px 40px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: #229954;
}

.form-image-overlap {
    width: 35%;
    height: 500px;
    background: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -60px;
}

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

.trust-section-split {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    background: #f8f9fa;
}

.trust-content {
    flex: 1;
    padding-left: 5%;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 45px;
    color: #1a1a1a;
}

.testimonial-block {
    margin-bottom: 40px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #7f8c8d;
}

.trust-image {
    width: 40%;
    height: 480px;
    background: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-home:hover {
    background: #2980b9;
}

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

.page-container h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.page-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-container ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 10px;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #555555;
}

@media (max-width: 1024px) {
    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        margin-top: 40px;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .intro-offset,
    .trust-section-split,
    .form-section-diagonal {
        flex-direction: column;
    }

    .trust-image,
    .form-image-overlap {
        width: 100%;
    }

    .service-card {
        flex-direction: column;
        width: 100% !important;
        margin-left: 0 !important;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-text-block h1 {
        font-size: 38px;
    }

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