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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2d6a4f;
    --accent-color: #52b788;
    --dark-color: #081c15;
    --light-color: #d8f3dc;
    --text-color: #1b1b1b;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

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

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 800;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

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

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

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

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

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

.cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-hover);
}

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

.intro-split {
    padding: 100px 20px;
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    line-height: 1.3;
    font-weight: 700;
}

.split-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.problem-section {
    background: var(--dark-color);
    color: var(--white);
    padding: 90px 20px;
}

.problem-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    flex: 1 1 calc(50% - 15px);
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.problem-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-card p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.trust-split {
    padding: 100px 20px;
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--light-color);
}

.benefits-section {
    padding: 100px 20px;
    background: var(--white);
}

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

.benefits-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.testimonials-split {
    padding: 100px 20px;
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-content {
    background: var(--light-color);
    padding: 50px;
    border-radius: 12px;
}

.testimonials-content h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: var(--dark-color);
    font-weight: 700;
}

.testimonial {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.testimonial:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial .author {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.cta-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-section .cta-large {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .cta-large:hover {
    background: var(--light-color);
}

.services-form-section {
    padding: 100px 20px;
    background: var(--light-color);
}

.form-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    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(--accent-color);
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

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

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

.btn-cookie.reject {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-split,
.experience-split {
    padding: 100px 20px;
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.approach-section {
    padding: 100px 20px;
    background: var(--white);
}

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    flex-shrink: 0;
    width: 80px;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.services-intro-split {
    padding: 80px 20px;
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.services-section {
    padding: 80px 20px;
    background: var(--light-color);
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.service-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    padding: 35px 30px 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-header .price {
    font-size: 2.5rem;
    font-weight: 800;
}

.service-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: "✓";
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 10px;
}

.btn-service {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.additional-services {
    padding: 80px 20px;
    background: var(--white);
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-color);
    font-weight: 700;
}

.additional-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-card {
    flex: 1 1 calc(33.333% - 20px);
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.additional-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.additional-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.additional-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.link-inline {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-inline:hover {
    color: var(--secondary-color);
}

.pricing-info-split {
    padding: 100px 20px;
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--light-color);
}

.pricing-info-split.reverse {
    flex-direction: row-reverse;
}

.info-list {
    list-style: none;
    margin-top: 25px;
}

.info-list li {
    padding: 10px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 30px;
}

.info-list li::before {
    content: "→";
    color: var(--accent-color);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.contact-split {
    padding: 80px 20px;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 40px;
    color: var(--dark-color);
    font-weight: 700;
}

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

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 5px;
}

.contact-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-content a:hover {
    text-decoration: underline;
}

.contact-content .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-extra {
    margin-top: 40px;
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
}

.contact-extra h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-extra p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.faq-section {
    padding: 100px 20px;
    background: var(--light-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark-color);
    font-weight: 700;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-section {
    padding: 120px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.service-confirmation {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--dark-color);
}

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 600;
}

.thanks-steps {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.thanks-steps li {
    padding: 12px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 30px;
}

.thanks-steps li::before {
    content: "→";
    color: var(--accent-color);
    font-weight: 700;
    position: absolute;
    left: 0;
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

.thanks-contact {
    font-size: 0.95rem;
    color: var(--text-light);
}

.thanks-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.thanks-contact a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 80px 20px;
    background: var(--white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 700;
}

.update-date {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    font-weight: 700;
    color: var(--dark-color);
}

@media (max-width: 968px) {
    .hero-content,
    .intro-split,
    .trust-split,
    .testimonials-split,
    .form-split,
    .about-split,
    .experience-split,
    .services-intro-split,
    .pricing-info-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .pricing-info-split.reverse {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .split-text h2 {
        font-size: 1.9rem;
    }

    .services-grid,
    .additional-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

    .service-card,
    .additional-card,
    .value-card,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .split-text h2 {
        font-size: 1.6rem;
    }

    .step-number {
        font-size: 2rem;
        width: 60px;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }
}
