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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #4a8b4d;
    --accent-color: #7fbc41;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --border-color: #dfe6e9;
    --success-color: #2ecc71;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    height: 90vh;
    overflow: hidden;
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 1.05rem;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
}

.cta-primary.large {
    padding: 1.3rem 3.5rem;
    font-size: 1.15rem;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.intro-section p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.split-section {
    display: flex;
    align-items: stretch;
}

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

.split-image {
    flex: 1;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.problem-section {
    background-color: var(--white);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.problem-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.insight-section {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.insight-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 2;
}

.insight-text h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.insight-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.insight-visual {
    flex: 1;
}

.feature-box {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-box h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.services-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.cta-service {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-section {
    background-color: var(--white);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-point {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.trust-point span:last-child {
    font-size: 1.05rem;
    color: var(--text-light);
}

.testimonials-section {
    padding: 6rem 2rem;
    background-color: var(--dark-bg);
    color: var(--white);
}

.testimonials-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--white);
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
}

.testimonial {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}

.process-section {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.process-section h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 4rem;
}

.process-steps {
    display: flex;
    gap: 3rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.form-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 95, 45, 0.3);
}

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

.final-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.main-footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
    font-size: 1rem;
}

.sticky-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    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: 2rem;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

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

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

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

.page-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 6rem 2rem;
}

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

.value-card {
    flex: 1 1 calc(50% - 1.5rem);
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-values {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.about-values h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1rem;
}

.about-team {
    padding: 6rem 2rem;
    background-color: var(--light-bg);
}

.about-team h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1rem;
}

.team-structure {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-group {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-group h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-group p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.method-list {
    list-style: none;
    margin: 1.5rem 0;
}

.method-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.method-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.about-numbers {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.about-numbers h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--white);
}

.numbers-grid {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.number-box {
    flex: 1;
    text-align: center;
}

.big-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1;
}

.number-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-certifications {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.about-certifications h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.cert-list {
    list-style: none;
    margin-top: 2rem;
}

.cert-list li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.cert-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1;
}

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

.about-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

.about-cta p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-intro {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.services-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

.service-detail.reverse {
    flex-direction: row-reverse;
    background-color: var(--white);
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.service-price-box {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-detail-image {
    flex: 1;
    max-width: 500px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.services-combinations {
    padding: 6rem 2rem;
    background-color: var(--dark-bg);
    color: var(--white);
}

.services-combinations h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.combinations-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.combination-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 4px solid var(--accent-color);
}

.combination-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.combo-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.combo-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.combo-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.combo-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.combo-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.combo-saving {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-section {
    padding: 4rem 2rem 6rem;
}

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
}

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

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

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

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.map-placeholder {
    width: 100%;
    background-color: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
}

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

.map-note {
    padding: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    background-color: var(--white);
}

.contact-areas {
    padding: 6rem 2rem;
    background-color: var(--light-bg);
}

.contact-areas h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1rem;
}

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

.area-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.area-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-faq {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.contact-faq h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.contact-trust {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.contact-trust h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.trust-reasons {
    list-style: none;
    margin-top: 1.5rem;
}

.trust-reasons li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.trust-reasons li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.thanks-info {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.thanks-details {
    margin: 4rem 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.next-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.next-step .step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step-content p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.thanks-additional {
    margin: 3rem 0;
}

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

.thanks-additional p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.thanks-link {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--light-bg);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.thanks-contact {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.thanks-contact p {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

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

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

.legal-page {
    padding: 4rem 2rem 6rem;
    background-color: var(--white);
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.legal-section p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-section ul li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

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

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

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-right {
        height: 400px;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 3rem 2rem;
    }

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

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

    .process-steps {
        flex-direction: column;
        gap: 2.5rem;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .service-detail-image {
        max-width: 100%;
    }

    .combinations-grid {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .numbers-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .number-box {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .services-grid {
        flex-direction: column;
    }

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

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .number-box {
        flex: 1 1 100%;
    }

    .next-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

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

    .intro-section h2,
    .split-content h2 {
        font-size: 1.8rem;
    }

    .services-section h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .form-intro h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}