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

:root {
    --primary-color: #1a1a1a;
    --accent-color: #e63946;
    --secondary-color: #457b9d;
    --light-bg: #f8f9fa;
    --dark-bg: #2b2d42;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --border-radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.ad-disclosure {
    background-color: var(--dark-bg);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 37px;
    z-index: 999;
}

.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: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 40px 80px 120px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s;
}

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

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 10%;
    width: 60%;
    height: 80%;
    background-color: var(--light-bg);
}

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

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

.intro-narrow {
    flex: 1;
    padding-left: 60px;
}

.intro-narrow h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.7;
}

.intro-wide-image {
    flex: 1.2;
    background-color: var(--light-bg);
}

.intro-wide-image img {
    width: 100%;
    height: auto;
    display: block;
}

.services-asymmetric {
    background-color: var(--light-bg);
    padding: 100px 40px;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 200px;
}

.services-header-offset h2 {
    font-size: 48px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.services-header-offset p {
    font-size: 20px;
    color: var(--light-text);
}

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

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 500px;
}

.service-card-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 350px;
}

.service-card-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
}

.service-card-offset {
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--light-bg);
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background-color: #3a6b8c;
    transform: translateY(-2px);
}

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

.trust-content {
    flex: 1.3;
}

.trust-content h2 {
    font-size: 44px;
    margin-bottom: 48px;
    color: var(--primary-color);
    font-weight: 700;
}

.trust-points-staggered {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.trust-point {
    padding: 24px 32px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.trust-point-1 {
    margin-left: 0;
}

.trust-point-2 {
    margin-left: 60px;
}

.trust-point-3 {
    margin-left: 120px;
}

.trust-point h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.trust-point p {
    color: var(--light-text);
    line-height: 1.6;
}

.trust-image-float {
    flex: 1;
    background-color: var(--light-bg);
}

.trust-image-float img {
    width: 100%;
    height: auto;
    display: block;
}

.form-section-offset {
    padding: 100px 40px;
    background-color: var(--white);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 80px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.footer-asymmetric {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 40px 30px;
}

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

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

.footer-block-1 {
    flex: 1.5;
}

.footer-block h3,
.footer-block h4 {
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-block p {
    color: #b8b8b8;
    line-height: 1.6;
}

.footer-block a {
    display: block;
    color: #b8b8b8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: var(--white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: var(--text-color);
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #d62839;
}

.cookie-reject {
    background-color: #e0e0e0;
    color: var(--text-color);
}

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

.page-hero-offset {
    padding: 80px 40px 60px 160px;
    background-color: var(--light-bg);
}

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 800;
}

.page-hero-content p {
    font-size: 20px;
    color: var(--light-text);
}

.about-story-asymmetric {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-block {
    flex: 1;
    padding-right: 40px;
}

.story-block h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: var(--primary-color);
    font-weight: 700;
}

.story-block p {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-image-overlap {
    flex: 1;
    background-color: var(--light-bg);
}

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

.values-diagonal {
    padding: 100px 40px;
    background-color: var(--light-bg);
}

.values-diagonal h2 {
    font-size: 44px;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.values-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
}

.value-card-1 {
    margin-left: 0;
    max-width: 700px;
}

.value-card-2 {
    margin-left: 100px;
    max-width: 700px;
    align-self: flex-end;
}

.value-card-3 {
    margin-left: 50px;
    max-width: 700px;
}

.value-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.value-card p {
    font-size: 17px;
    color: var(--light-text);
    line-height: 1.6;
}

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

.team-intro-offset {
    margin-bottom: 60px;
    padding-left: 80px;
}

.team-intro-offset h2 {
    font-size: 44px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.team-intro-offset p {
    font-size: 20px;
    color: var(--light-text);
}

.team-members-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.team-member-large {
    flex: 1 1 calc(55% - 15px);
    min-width: 450px;
}

.team-member-small {
    flex: 1 1 calc(45% - 15px);
    min-width: 350px;
}

.team-member-medium {
    flex: 1 1 100%;
}

.team-member img {
    width: 100%;
    height: 320px;
    display: block;
}

.team-member h3 {
    font-size: 26px;
    margin: 24px 24px 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.team-member p {
    padding: 0 24px 28px;
    color: var(--light-text);
    line-height: 1.6;
}

.cta-section-offset {
    padding: 120px 40px;
    background-color: var(--dark-bg);
}

.cta-content-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding-left: 60px;
}

.cta-content-asymmetric h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.cta-content-asymmetric p {
    font-size: 20px;
    color: #b8b8b8;
    margin-bottom: 36px;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 18px 48px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s;
}

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

.services-detail-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

.service-detail-large {
    flex-direction: row;
}

.service-detail-offset-right {
    flex-direction: row-reverse;
    padding-left: 80px;
}

.service-detail-centered {
    flex-direction: row;
    padding-right: 80px;
}

.service-detail-offset-left {
    flex-direction: row-reverse;
}

.service-detail-small {
    flex-direction: row;
    padding-left: 120px;
}

.service-detail-wide {
    flex-direction: row-reverse;
    padding-right: 60px;
}

.service-detail-image {
    flex: 1;
    background-color: var(--light-bg);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-content > p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 28px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 32px;
}

.feature-item {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-color);
    font-size: 16px;
}

.service-pricing-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-main {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
}

.form-section-inline {
    padding: 80px 40px;
    background-color: var(--light-bg);
}

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

.form-container-compact h2 {
    font-size: 38px;
    margin-bottom: 12px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.form-container-compact p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 36px;
    text-align: center;
}

.contact-section-asymmetric {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 42px;
    margin-bottom: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-detail-item p {
    font-size: 17px;
    color: var(--light-text);
    line-height: 1.7;
}

.contact-image-offset {
    flex: 1;
    background-color: var(--light-bg);
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.additional-info-diagonal {
    padding: 80px 40px;
    background-color: var(--light-bg);
}

.additional-info-diagonal h2 {
    font-size: 40px;
    margin-bottom: 48px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.info-blocks-staggered {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-block {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    max-width: 800px;
}

.info-block:nth-child(1) {
    align-self: flex-start;
}

.info-block:nth-child(2) {
    align-self: flex-end;
}

.info-block:nth-child(3) {
    align-self: center;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.6;
}

.legal-content {
    padding: 60px 40px;
    background-color: var(--white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-container ul {
    margin: 20px 0 20px 24px;
}

.legal-container li {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-container em {
    color: var(--light-text);
    font-style: italic;
}

.thanks-section-centered {
    min-height: 60vh;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 16px;
}

.thanks-service-info {
    margin: 28px 0;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.service-confirmation {
    font-size: 17px;
    color: var(--text-color);
}

.thanks-actions {
    margin-top: 36px;
    display: flex;
    gap: 20px;
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s;
}

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

.thanks-image {
    flex: 1;
    background-color: var(--light-bg);
}

.thanks-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

@media (max-width: 1024px) {
    .hero-text-block h1 {
        font-size: 42px;
    }

    .hero-content-offset {
        padding: 60px 30px;
    }

    .hero-image-overlap {
        width: 50%;
    }

    .intro-offset,
    .trust-section-diagonal,
    .about-story-asymmetric,
    .contact-section-asymmetric,
    .thanks-section-centered {
        flex-direction: column;
        gap: 50px;
        padding: 80px 30px;
    }

    .service-detail {
        flex-direction: column !important;
        padding: 0 !important;
    }

    .services-header-offset,
    .team-intro-offset {
        padding-left: 0;
    }

    .trust-point-2,
    .trust-point-3 {
        margin-left: 0;
    }

    .value-card-1,
    .value-card-2,
    .value-card-3 {
        margin-left: 0;
        align-self: auto;
        max-width: 100%;
    }

    .info-block {
        align-self: auto !important;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .hero-text-block p {
        font-size: 16px;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }

    .service-card-large,
    .service-card-small,
    .service-card-medium,
    .service-card-offset {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .team-member-large,
    .team-member-small {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        text-align: center;
    }
}
