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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

.btn-cookie-reject:hover {
    background-color: #333333;
}

.header-asymmetric {
    position: relative;
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

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

.logo-wrapper a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-menu li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    position: relative;
    min-height: 650px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 0 0 48%;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
    margin-right: -120px;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-offset {
    max-width: 900px;
    margin: 100px auto 100px 180px;
    padding: 0 40px;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.benefits-irregular {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 60px;
}

.benefit-card.offset-left {
    margin-left: 0;
    margin-right: 120px;
}

.benefit-card.offset-right {
    margin-left: 120px;
    margin-right: 0;
    flex-direction: row-reverse;
}

.benefit-card.offset-center {
    margin-left: 60px;
    margin-right: 60px;
}

.benefit-card img {
    flex: 0 0 45%;
    border-radius: 8px;
    background-color: #e2e8f0;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.services-preview-asymmetric {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.services-intro-block {
    max-width: 800px;
    margin: 0 auto 60px 80px;
}

.services-intro-block h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-intro-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.services-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-card-mini {
    flex: 0 0 calc(33.333% - 28px);
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card-mini:nth-child(2) {
    margin-top: 40px;
}

.service-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-card-mini h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card-mini p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #2980b9;
}

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

.cta-visual-block {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-left: 80px;
    background-color: #e2e8f0;
}

.cta-visual-block img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.4;
}

.cta-text-overlay {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    max-width: 500px;
    color: #1a1a1a;
}

.cta-text-overlay h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.cta-text-overlay p {
    font-size: 17px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

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

.form-container-asymmetric {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-left: 60px;
}

.form-intro-text {
    flex: 0 0 35%;
}

.form-intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-form-asymmetric {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-section-offset {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.trust-content-irregular {
    max-width: 1200px;
    margin: 0 auto 0 120px;
}

.trust-content-irregular h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-blocks {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.trust-item {
    padding-left: 40px;
    border-left: 4px solid #3498db;
}

.trust-item:nth-child(2) {
    margin-left: 80px;
}

.trust-item:nth-child(3) {
    margin-left: 40px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-block {
    flex: 1;
}

.footer-block:first-child {
    flex: 1.5;
}

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

.footer-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: #2a2a2a;
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
}

@media (max-width: 768px) {
    .hero-offset-content {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-text-block {
        flex: 1;
    }

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

    .hero-image-overlap {
        margin: 20px 0 0 0;
    }

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

    .benefit-card.offset-right {
        flex-direction: column;
    }

    .benefit-card img {
        flex: 1;
        width: 100%;
    }

    .form-container-asymmetric {
        flex-direction: column;
        margin-left: 0;
    }

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

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