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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b9d83;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
}

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);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-hover);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 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;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.hero-split {
    margin-top: 76px;
    display: flex;
    min-height: 90vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8ede6 100%);
    padding: 4rem;
}

.hero-text {
    max-width: 560px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-right {
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    min-height: 70vh;
}

.intro-image,
.intro-content {
    flex: 1;
}

.intro-image {
    overflow: hidden;
}

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

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    background: var(--bg-white);
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

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

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

.trust-block {
    background: var(--primary-color);
    padding: 5rem 2rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-stat {
    text-align: center;
    color: var(--bg-white);
}

.trust-stat h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.trust-stat p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.services-intro-split {
    display: flex;
    min-height: 60vh;
    background: var(--bg-light);
}

.services-intro-left,
.services-intro-right {
    flex: 1;
}

.services-intro-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.services-intro-left h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.services-intro-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.services-intro-right {
    overflow: hidden;
}

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

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

.service-card {
    display: flex;
    max-width: 1300px;
    margin: 0 auto 4rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    background: var(--bg-white);
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.split-card {
    min-height: 400px;
}

.service-card.split-card.reverse {
    flex-direction: row-reverse;
}

.service-image,
.service-info {
    flex: 1;
}

.service-image {
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.btn-select-service {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #234a30;
    transform: translateX(5px);
}

.btn-primary,
.btn-secondary,
.btn-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #234a30;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-primary-large {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background: #234a30;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 61, 0.3);
}

.process-split {
    display: flex;
    min-height: 70vh;
}

.process-left,
.process-right {
    flex: 1;
}

.process-left {
    overflow: hidden;
}

.process-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-right {
    padding: 5rem 4rem;
    background: var(--bg-light);
}

.process-right h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.process-step {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    border-left: 3px solid var(--primary-color);
}

.process-step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

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

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonials-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 350px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.form-split {
    display: flex;
    min-height: 80vh;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.form-left p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

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

.form-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.form-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.form-right {
    background: var(--bg-light);
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 550px;
}

.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: 1rem;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    font-size: 1rem;
    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%;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #234a30;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.3);
}

.cta-final {
    background: linear-gradient(135deg, #2d5a3d 0%, #1f4229 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--bg-white);
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p {
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
}

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

.btn-sticky {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.btn-cookie-accept:hover {
    background: #234a30;
}

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

.btn-cookie-reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.page-hero {
    margin-top: 76px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f4229 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: var(--bg-white);
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-split,
.team-split {
    display: flex;
    min-height: 70vh;
}

.about-text,
.about-image,
.team-text,
.team-image {
    flex: 1;
}

.about-text,
.team-text {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.about-text h2,
.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.about-text p,
.team-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image,
.team-image {
    overflow: hidden;
}

.about-image img,
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

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

.value-card {
    flex: 1 1 calc(50% - 1.25rem);
    padding: 2.5rem;
    background: var(--bg-light);
    border-top: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

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

.philosophy-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.philosophy-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.cta-about {
    background: var(--primary-color);
    padding: 6rem 2rem;
    text-align: center;
}

.cta-about .cta-content h2 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

.cta-about .cta-content p {
    font-size: 1.2rem;
    color: var(--bg-white);
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.services-intro-text {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.intro-text-container h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-text-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-detailed {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.service-detail-card {
    display: flex;
    max-width: 1300px;
    margin: 0 auto 5rem;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    min-height: 500px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-image {
    overflow: hidden;
}

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

.service-detail-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-includes li:before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
}

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

.services-cta {
    background: var(--primary-color);
    padding: 6rem 2rem;
}

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

.services-cta-content h2 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 1.2rem;
    color: var(--bg-white);
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.contact-split {
    display: flex;
    padding: 6rem 2rem;
    background: var(--bg-light);
    min-height: 70vh;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info {
    padding: 2rem 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-note {
    padding: 1.5rem;
    background: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

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

.contact-map {
    overflow: hidden;
}

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

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

.contact-faq h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1.25rem);
    padding: 2rem;
    background: var(--bg-light);
}

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

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

.thanks-section {
    margin-top: 76px;
    padding: 6rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
    background: var(--bg-white);
    padding: 4rem;
    box-shadow: var(--shadow-hover);
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.thanks-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

#service-confirmation {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
}

.thanks-next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-next-steps ul {
    list-style: none;
    padding: 0;
}

.thanks-next-steps li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
}

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

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.legal-content {
    margin-top: 76px;
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

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

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .services-intro-split,
    .process-split,
    .form-split,
    .about-split,
    .team-split,
    .contact-split {
        flex-direction: column;
    }

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

    .service-card.split-card,
    .service-card.split-card.reverse,
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

    .intro-content h2,
    .services-intro-left h2,
    .process-right h2,
    .about-text h2,
    .team-text h2 {
        font-size: 2rem;
    }

    .cta-content h2,
    .cta-about .cta-content h2,
    .services-cta-content h2 {
        font-size: 2.2rem;
    }

    .hero-left,
    .intro-content,
    .services-intro-left,
    .process-right,
    .form-left,
    .form-right,
    .about-text,
    .team-text,
    .contact-info,
    .service-info,
    .service-detail-content {
        padding: 3rem 2rem;
    }

    .trust-container {
        gap: 2rem;
    }

    .testimonials-grid,
    .values-grid,
    .faq-grid {
        gap: 2rem;
    }

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

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

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

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

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 2rem;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}