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

:root {
    --primary-color: #1a5cff;
    --secondary-color: #0a3d99;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    align-items: center;
    padding: 4rem 6rem 4rem 6rem;
    position: relative;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding-right: 3rem;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-visual-block {
    flex: 1;
    position: relative;
    margin-left: -5rem;
    margin-top: -3rem;
}

.hero-visual-block img {
    width: 100%;
    height: 700px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.intro-offset {
    display: flex;
    padding: 5rem 6rem;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-light);
}

.intro-narrow {
    flex: 0 0 55%;
}

.intro-image-right {
    flex: 1;
}

.intro-image-right img {
    border-radius: 8px;
    background-color: var(--border-color);
    width: 100%;
    height: 450px;
}

.services-grid-asymmetric {
    padding: 6rem 6rem;
    background-color: var(--bg-white);
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 3rem;
}

.service-card {
    margin-bottom: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-large {
    flex-direction: row;
}

.card-offset {
    flex-direction: row-reverse;
    margin-left: 10%;
}

.card-inline {
    flex-direction: column;
    max-width: 70%;
}

.card-stacked {
    flex-direction: column;
    max-width: 60%;
    margin-left: auto;
}

.card-wide {
    flex-direction: row;
    max-width: 85%;
}

.card-content {
    padding: 2.5rem;
    flex: 1;
}

.card-image {
    flex: 0 0 45%;
}

.card-image img {
    width: 100%;
    height: 100%;
    background-color: var(--border-color);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.btn-select-service {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-section-diagonal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 6rem 6rem;
    color: var(--bg-white);
    position: relative;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.trust-section-overlay {
    padding: 6rem 6rem;
    background-color: var(--bg-light);
}

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

.trust-blocks {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.trust-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.cta-inline-section {
    padding: 4rem 6rem;
    text-align: center;
    background-color: var(--bg-white);
}

.cta-link-large {
    display: inline-block;
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 3px solid var(--primary-color);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cta-link-large:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 6rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-block-left,
.footer-block-center,
.footer-block-right {
    flex: 1;
    min-width: 200px;
}

.footer-block-left h4,
.footer-block-center h4,
.footer-block-right h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-block-center a,
.footer-block-right a {
    display: block;
    margin-bottom: 0.6rem;
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-block-center a:hover,
.footer-block-right a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    color: #cccccc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-cookie-accept:hover {
    background-color: var(--secondary-color);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.about-hero-diagonal {
    display: flex;
    min-height: 80vh;
    align-items: center;
    padding: 4rem 6rem;
}

.about-text-block {
    flex: 0 0 40%;
    z-index: 2;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-image-offset {
    flex: 1;
    margin-left: -3rem;
    margin-top: 2rem;
}

.about-image-offset img {
    width: 100%;
    height: 550px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

.story-section-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.values-section-split {
    padding: 6rem 6rem;
    background-color: var(--bg-light);
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-block {
    flex: 1 1 400px;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.block-left {
    margin-right: auto;
}

.block-right {
    margin-left: auto;
}

.block-full {
    flex: 1 1 100%;
}

.value-visual {
    flex: 1 1 400px;
}

.value-visual img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background-color: var(--border-color);
}

.team-section-cards {
    padding: 6rem 6rem;
    background-color: var(--bg-white);
}

.team-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 2.5rem;
}

.member-offset {
    flex: 1 1 400px;
    margin-right: 5%;
}

.member-wide {
    flex: 1 1 100%;
    max-width: 70%;
}

.member-inline {
    flex: 1 1 350px;
}

.member-role {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.cta-section-bottom {
    padding: 5rem 6rem;
    text-align: center;
    background-color: var(--bg-light);
}

.services-hero-offset {
    padding: 6rem 6rem 4rem;
    max-width: 900px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-detailed-layout {
    padding: 2rem 6rem 6rem;
}

.service-detail-card {
    margin-bottom: 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.card-diagonal-left {
    flex-direction: row;
}

.card-diagonal-right {
    flex-direction: row-reverse;
    margin-left: 8%;
}

.card-stacked-left {
    flex-direction: column;
    max-width: 75%;
}

.card-full-width {
    flex-direction: column;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.service-visual {
    flex: 0 0 45%;
}

.service-visual img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background-color: var(--border-color);
}

.service-visual-small img {
    height: 300px;
}

.service-info {
    flex: 1;
}

.service-info-centered {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.service-info ul,
.service-info-centered ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-info li,
.service-info-centered li {
    margin-bottom: 0.6rem;
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.form-section-services {
    background-color: var(--bg-light);
    padding: 5rem 6rem;
}

.form-section-services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.form-section-services .contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero-split {
    display: flex;
    min-height: 75vh;
    align-items: center;
    padding: 4rem 6rem;
}

.contact-left-block {
    flex: 0 0 40%;
    padding-right: 3rem;
}

.contact-image-right {
    flex: 1;
}

.contact-image-right img {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: var(--bg-light);
}

.contact-info-asymmetric {
    padding: 5rem 6rem;
    background-color: var(--bg-light);
    display: flex;
    gap: 4rem;
}

.contact-block-main {
    flex: 0 0 55%;
}

.contact-block-secondary {
    flex: 1;
    padding: 2.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    align-self: start;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.map-placeholder-section {
    padding: 4rem 6rem;
    background-color: var(--bg-white);
}

.map-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
}

.thanks-hero-centered {
    display: flex;
    min-height: 80vh;
    align-items: center;
    padding: 4rem 6rem;
    gap: 4rem;
}

.thanks-content {
    flex: 1;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-selected {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.next-steps-section {
    padding: 5rem 6rem;
    background-color: var(--bg-light);
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.step-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-back-section {
    padding: 4rem 6rem;
    text-align: center;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.legal-content h1 {
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
}

.legal-content em {
    color: var(--text-light);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .nav-floating {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-asymmetric,
    .about-hero-diagonal,
    .contact-hero-split {
        flex-direction: column;
    }

    .hero-visual-block {
        margin-left: 0;
        margin-top: 2rem;
    }

    .intro-offset {
        flex-direction: column;
    }

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

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

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

    .values-section-split,
    .contact-info-asymmetric {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-asymmetric,
    .intro-offset,
    .services-grid-asymmetric,
    .form-section-diagonal,
    .trust-section-overlay,
    .cta-inline-section,
    .footer-asymmetric,
    .about-hero-diagonal,
    .story-section-narrow,
    .values-section-split,
    .team-section-cards,
    .cta-section-bottom,
    .services-hero-offset,
    .services-detailed-layout,
    .form-section-services,
    .contact-hero-split,
    .contact-info-asymmetric,
    .map-placeholder-section,
    .thanks-hero-centered,
    .next-steps-section,
    .cta-back-section {
        padding: 3rem 1.5rem;
    }

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

    .trust-blocks,
    .steps-grid {
        flex-direction: column;
    }

    .team-grid-irregular {
        flex-direction: column;
    }

    .member-wide {
        max-width: 100%;
    }
}