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

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

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

.header-asymmetric {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.hero-asymmetric {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.hero-text-block {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-text-block h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.hero-image-overlap {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 500px;
    background-color: #e8f4f8;
    z-index: 1;
}

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

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

.intro-left {
    flex: 0 0 400px;
}

.intro-left h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #2c3e50;
}

.intro-right {
    flex: 1;
}

.intro-right p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
    position: relative;
}

.section-label {
    margin-bottom: 50px;
}

.section-label span {
    display: inline-block;
    padding: 8px 20px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.card-offset-1 {
    margin-left: 0;
}

.card-offset-2 {
    margin-left: 100px;
}

.card-offset-3 {
    margin-left: 50px;
}

.card-offset-4 {
    margin-left: 150px;
}

.card-offset-5 {
    margin-left: 80px;
}

.card-offset-6 {
    margin-left: 20px;
}

.service-image {
    flex: 0 0 450px;
    height: 320px;
    background-color: #e8f4f8;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

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

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #1a252f;
}

.cta-inline {
    background-color: #f8f9fa;
    padding: 80px 40px;
    margin: 100px 0;
}

.cta-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.cta-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-text p {
    font-size: 18px;
    color: #555;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #c0392b;
}

.form-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 200px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 17px;
    color: #555;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 4px;
}

.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: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 36px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.benefits-stacked {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.benefits-stacked h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 16px;
    color: #555;
}

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 40px;
    margin: 80px 0;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    text-align: center;
}

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

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

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

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-block ul li a {
    color: #bdc3c7;
    transition: color 0.3s;
}

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

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

@media (max-width: 1200px) {
    .hero-image-overlap {
        width: 500px;
        height: 400px;
    }

    .intro-offset {
        gap: 60px;
    }

    .intro-left {
        flex: 0 0 300px;
    }

    .service-image {
        flex: 0 0 350px;
        height: 280px;
    }

    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .card-offset-5,
    .card-offset-6 {
        margin-left: 50px;
    }

    .form-container-offset {
        margin-left: 100px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-image-overlap {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }

    .intro-offset {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .intro-left {
        flex: 1;
    }

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

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

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

    .form-container-offset {
        margin-left: 0;
    }

    .benefit-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .hero-text-block {
        padding: 30px;
    }

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

    .intro-left h2 {
        font-size: 28px;
    }

    .service-info h3 {
        font-size: 24px;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .form-intro h2 {
        font-size: 28px;
    }

    .benefits-stacked h2 {
        font-size: 28px;
    }
}