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

:root {
    --primary-color: #2d7a3e;
    --secondary-color: #1a4d28;
    --accent-color: #f4a63b;
    --text-dark: #1f1f1f;
    --text-medium: #4a4a4a;
    --text-light: #707070;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px var(--shadow-medium);
}

.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 1 400px;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-medium);
}

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

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    background-color: var(--bg-light);
}

.hero-content-offset {
    width: 45%;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
}

.hero-text-block {
    max-width: 520px;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-image-block {
    width: 55%;
    position: relative;
    background-color: var(--bg-light);
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary,
.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary:hover,
.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

.intro-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-image {
    width: 40%;
    background-color: var(--bg-light);
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--text-dark);
}

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

.services-preview {
    padding: 80px 40px 120px;
    background-color: var(--bg-light);
}

.section-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px 120px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header-offset p {
    font-size: 18px;
    color: var(--text-medium);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-light);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px var(--shadow-medium);
    transform: translateY(-4px);
}

.service-large {
    flex: 1 1 calc(60% - 12px);
}

.service-small {
    flex: 1 1 calc(40% - 12px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0 24px 20px;
}

.price-tag {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 24px 24px;
}

.cta-inline {
    text-align: center;
    margin-top: 60px;
}

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

.process-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 100px;
}

.process-text-offset {
    flex: 1;
}

.process-text-offset h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    padding-left: 80px;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.step-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.process-image-block {
    width: 420px;
    margin-top: 60px;
    background-color: var(--bg-light);
}

.process-image-block img {
    width: 100%;
    border-radius: 8px;
}

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

.benefits-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.benefits-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.benefit-block {
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.benefit-primary {
    flex: 1 1 55%;
    background-color: var(--primary-color);
    color: white;
}

.benefit-secondary {
    flex: 1 1 calc(45% - 28px);
    background-color: var(--bg-white);
}

.benefit-accent {
    flex: 1 1 100%;
    background-color: var(--accent-color);
    color: white;
}

.benefit-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.benefit-block p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonials-section {
    padding: 100px 40px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

.testimonials-flow {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 24px);
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

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

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto 0 200px;
}

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

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 17px;
    color: var(--text-medium);
}

.contact-form {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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(--primary-color);
}

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

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

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1 1 200px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

.footer-bottom .disclaimer {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    padding: 80px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-hero-content p {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

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

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

.service-layout-right {
    flex-direction: row-reverse;
}

.service-detail-image {
    width: 45%;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.feature-list {
    margin-bottom: 28px;
}

.feature-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.pricing-box {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-cta-section {
    padding: 80px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.service-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-content h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 16px;
}

.service-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.about-intro-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-intro-layout {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.about-text-primary {
    flex: 1;
    padding-top: 40px;
}

.about-text-primary h1 {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.about-text-primary p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
}

.about-image-offset {
    width: 40%;
    margin-top: 80px;
    background-color: var(--bg-light);
}

.about-image-offset img {
    width: 100%;
    border-radius: 8px;
}

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

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-asymmetric-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.value-block {
    padding: 40px 36px;
    border-radius: 8px;
}

.value-primary {
    flex: 1 1 60%;
    background-color: var(--bg-white);
    box-shadow: 0 4px 16px var(--shadow-light);
}

.value-secondary {
    flex: 1 1 calc(40% - 28px);
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.value-accent {
    flex: 1 1 100%;
    background-color: var(--accent-color);
    color: white;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.value-block p {
    font-size: 16px;
    line-height: 1.7;
}

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

.team-content-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-image-block {
    width: 45%;
    background-color: var(--bg-light);
}

.team-image-block img {
    width: 100%;
    border-radius: 8px;
}

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

.team-text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.team-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.approach-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.approach-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.approach-step {
    flex: 1;
    padding: 36px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

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

.history-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.history-text {
    flex: 1;
}

.history-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--text-dark);
}

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

.history-visual {
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-box {
    padding: 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 15px;
    opacity: 0.9;
}

.cta-about-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-about-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-about-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.contact-hero {
    padding: 80px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-hero-content p {
    font-size: 18px;
    color: var(--text-medium);
}

.contact-main-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-layout {
    display: flex;
    gap: 100px;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-detail {
    margin-bottom: 36px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.contact-visual-block {
    width: 45%;
}

.contact-visual-block img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 28px;
    background-color: var(--bg-light);
}

.contact-note {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
}

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

.service-area-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-area-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.service-area-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.faq-section {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-item {
    padding: 28px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-cta-section {
    padding: 80px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.contact-cta-wrapper h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 16px;
}

.contact-cta-wrapper p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
}

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.service-confirmation {
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 48px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 48px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-align: center;
}

.next-steps-list {
    list-style: decimal;
    padding-left: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.next-steps-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 80px 40px;
    min-height: 600px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-container ul {
    list-style: disc;
}

.legal-container ol {
    list-style: decimal;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.legal-container strong {
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-offset,
    .hero-image-block {
        width: 100%;
    }

    .intro-layout,
    .service-detail-block,
    .team-content-wrapper,
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .intro-image,
    .service-detail-image,
    .team-image-block,
    .contact-visual-block {
        width: 100%;
    }

    .service-large,
    .service-small {
        flex: 1 1 100%;
    }

    .process-wrapper {
        flex-direction: column;
    }

    .process-image-block {
        width: 100%;
        margin-top: 40px;
    }

    .approach-flow {
        flex-direction: column;
    }

    .form-container-asymmetric {
        margin-left: auto;
        margin-right: auto;
    }
}

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

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

    .section-header-offset {
        margin-left: 40px;
    }

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

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

    .testimonials-flow {
        flex-direction: column;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .about-intro-layout,
    .history-wrapper {
        flex-direction: column;
    }

    .about-image-offset,
    .history-visual {
        width: 100%;
        margin-top: 40px;
    }

    .values-asymmetric-layout {
        flex-direction: column;
    }

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