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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-asymmetric {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

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

.hero-content-left {
    flex: 1;
    padding-right: 40px;
    margin-top: -60px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content-left p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.hero-image-right {
    flex: 1.2;
    position: relative;
    margin-top: 40px;
    background-color: #e8f4f8;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.intro-asymmetric {
    max-width: 1200px;
    margin: 150px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-offset {
    flex: 1;
    margin-top: 80px;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

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

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

.intro-image-inline {
    flex: 0.8;
    background-color: #dfe6e9;
}

.intro-image-inline img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.services-staggered {
    background-color: var(--bg-light);
    padding: 120px 40px;
    margin-top: 100px;
}

.section-title-offset {
    max-width: 1400px;
    margin: 0 auto 80px 120px;
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-cards-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card-1, .service-card-4 {
    flex: 1 1 calc(60% - 20px);
}

.service-card-2, .service-card-3, .service-card-5, .service-card-6 {
    flex: 1 1 calc(40% - 20px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8f4f8;
}

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

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 30px 24px;
    line-height: 1.7;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 700;
    margin: 0 30px 24px;
}

.btn-select-service {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 30px 30px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
}

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

.form-wrapper-asymmetric {
    max-width: 700px;
    margin-left: 200px;
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
}

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

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

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

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

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

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

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

.btn-submit {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    margin-top: 12px;
}

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

.trust-block-overlay {
    background-color: var(--primary-color);
    padding: 100px 40px;
    margin-top: 120px;
    position: relative;
}

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

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.trust-content p {
    font-size: 19px;
    line-height: 1.8;
    opacity: 0.95;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 80px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
}

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

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

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

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.email-display {
    color: #b0b0b0;
    font-size: 15px;
    margin-top: 12px;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 30px auto 0;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 24px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.thanks-container {
    max-width: 800px;
    margin: 120px auto;
    padding: 60px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.thanks-container p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-container .service-selected {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 600;
    margin: 30px 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
}

.thanks-container a:hover {
    color: var(--primary-color);
}

.page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.page-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.page-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 600;
}

.page-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content ul li {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.contact-info-block h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-block p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 12px;
}

.working-hours {
    margin-top: 30px;
}

.working-hours h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.working-hours p {
    font-size: 16px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content-left {
        margin-top: 0;
        padding-right: 0;
    }

    .hero-content-left h1 {
        font-size: 42px;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .intro-block-offset {
        margin-top: 0;
    }

    .service-card-1, .service-card-2, .service-card-3,
    .service-card-4, .service-card-5, .service-card-6 {
        flex: 1 1 100%;
    }

    .form-wrapper-asymmetric {
        margin-left: 0;
    }

    .trust-content {
        margin-left: 0;
    }

    .footer-columns {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 30px);
    }

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

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

    .hero-offset {
        padding: 0 20px;
        margin-top: 40px;
    }

    .hero-content-left h1 {
        font-size: 32px;
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 36px;
    }

    .services-staggered {
        padding: 80px 20px;
    }

    .form-wrapper-asymmetric {
        padding: 40px 30px;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}