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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --light-green: #7ba552;
    --accent-earth: #8b6f47;
    --dark-text: #1a1a1a;
    --medium-text: #4a4a4a;
    --light-text: #6b6b6b;
    --bg-light: #f8f9f6;
    --bg-white: #ffffff;
    --border-color: #e0e4d9;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right a {
    font-size: 0.95rem;
    color: var(--medium-text);
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--primary-green);
    color: var(--bg-white);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    transition: background 0.3s;
}

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

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

.hero-content {
    flex: 1;
    padding: 4rem 8%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--medium-text);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    height: 85vh;
}

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

.intro-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

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

.intro-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.intro-content {
    padding: 4rem 8%;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.trust-block {
    background: var(--bg-light);
    padding: 6rem 8%;
}

.trust-content h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.trust-item h3 {
    font-size: 1.4rem;
    color: var(--secondary-green);
    margin-bottom: 0.8rem;
}

.trust-item p {
    font-size: 1rem;
    color: var(--medium-text);
    line-height: 1.7;
}

.services-showcase {
    padding: 6rem 8%;
    background: var(--bg-white);
}

.services-showcase h2 {
    font-size: 3rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-text);
    margin-bottom: 4rem;
}

.service-row {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.service-card {
    flex: 1;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    padding: 1.5rem 1.5rem 0.8rem;
}

.service-card p {
    color: var(--medium-text);
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-earth);
    padding: 1.5rem 1.5rem 1rem;
}

.btn-service {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background: var(--primary-green);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonial-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding: 5rem 0;
}

.testimonial-content {
    flex: 1;
    padding: 4rem 8%;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--dark-text);
    font-style: italic;
}

.testimonial-content footer {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    color: var(--medium-text);
}

.testimonial-visual {
    flex: 1;
    height: 500px;
}

.testimonial-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-section {
    padding: 6rem 8%;
    background: var(--bg-white);
}

.process-section h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 4rem;
}

.process-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--secondary-green);
    margin-bottom: 0.8rem;
}

.process-step p {
    color: var(--medium-text);
    font-size: 1rem;
    line-height: 1.6;
}

.form-section {
    padding: 6rem 8%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.form-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.form-wrapper > p {
    color: var(--medium-text);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

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

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

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

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

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

.guarantee-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.guarantee-visual {
    flex: 1;
    height: 550px;
}

.guarantee-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guarantee-content {
    flex: 1;
    padding: 4rem 8%;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.guarantee-list {
    list-style: none;
    margin-bottom: 2rem;
}

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

.guarantee-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.3rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-green);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

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

.footer {
    background: var(--dark-text);
    color: var(--bg-light);
    padding: 4rem 8% 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: var(--light-text);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
}

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

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-earth);
    color: var(--bg-white);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: var(--primary-green);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--bg-white);
    padding: 5rem 8%;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.about-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.about-content {
    flex: 1;
    padding: 4rem 8%;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-visual {
    flex: 1;
    height: 600px;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 6rem 8%;
    background: var(--bg-light);
}

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

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.team-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

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

.team-visual {
    flex: 1;
    height: 550px;
}

.team-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    flex: 1;
    padding: 4rem 8%;
}

.team-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.team-content p {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.philosophy-section {
    padding: 6rem 8%;
    background: var(--bg-white);
}

.philosophy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-wrapper h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.philosophy-wrapper p {
    font-size: 1.15rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-highlight {
    background: var(--bg-light);
    padding: 2.5rem;
    border-left: 4px solid var(--primary-green);
    margin-top: 3rem;
}

.philosophy-highlight strong {
    font-size: 1.3rem;
    color: var(--primary-green);
    display: block;
    margin-bottom: 1rem;
}

.philosophy-highlight p {
    margin: 0;
}

.credentials-split {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding: 5rem 0;
}

.credentials-content {
    flex: 1;
    padding: 4rem 8%;
}

.credentials-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.credentials-list {
    list-style: none;
}

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

.credentials-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.credentials-visual {
    flex: 1;
    height: 500px;
}

.credentials-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    padding: 6rem 8%;
    text-align: center;
    background: var(--bg-light);
}

.cta-section h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

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

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

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem 8%;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    color: var(--primary-green);
    margin-bottom: 1.2rem;
}

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

.service-detail-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-green);
    margin: 1.5rem 0 1rem;
}

.service-detail-content ul {
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    color: var(--medium-text);
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

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

.service-detail-visual {
    flex: 1;
    height: 500px;
}

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

.service-extras {
    padding: 6rem 8%;
    background: var(--bg-light);
}

.service-extras h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
}

.extras-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.extra-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.extra-item h3 {
    font-size: 1.3rem;
    color: var(--secondary-green);
    margin-bottom: 0.8rem;
}

.extra-item p {
    color: var(--medium-text);
    font-size: 0.95rem;
}

.service-guarantee {
    padding: 6rem 8%;
    background: var(--bg-white);
}

.guarantee-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-wrapper h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.guarantee-wrapper p {
    font-size: 1.15rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.guarantee-wrapper ul {
    list-style: none;
}

.guarantee-wrapper ul li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-text);
    position: relative;
}

.guarantee-wrapper ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.3rem;
}

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

.contact-info {
    flex: 1;
    padding: 0 8%;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2.5rem;
}

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

.contact-block h3 {
    font-size: 1.4rem;
    color: var(--secondary-green);
    margin-bottom: 0.8rem;
}

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

.contact-block a {
    color: var(--primary-green);
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
    padding-right: 8%;
}

.contact-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

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

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

.service-area {
    padding: 6rem 8%;
    background: var(--bg-light);
}

.service-area h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.area-list {
    margin: 2rem 0;
}

.area-list li {
    font-size: 1.05rem;
    color: var(--medium-text);
    margin-bottom: 0.8rem;
}

.faq-section {
    padding: 6rem 8%;
    background: var(--bg-white);
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
}

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

.faq-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--secondary-green);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--medium-text);
    font-size: 1rem;
    line-height: 1.6;
}

.thanks-section {
    padding: 6rem 8%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-container h1 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.thanks-main {
    font-size: 1.3rem;
    color: var(--secondary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.selected-service {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: none;
}

.selected-service p {
    margin: 0;
    font-size: 1.1rem;
}

.thanks-info {
    margin: 3rem 0;
    text-align: left;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.thanks-info h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps {
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--medium-text);
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background: var(--primary-green);
    color: var(--bg-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-contact {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.thanks-contact h3 {
    font-size: 1.3rem;
    color: var(--secondary-green);
    margin-bottom: 0.8rem;
}

.thanks-contact a {
    color: var(--primary-green);
    text-decoration: underline;
}

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

.thanks-testimonial {
    padding: 4rem 8%;
    background: var(--bg-light);
}

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

.testimonial-box blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--dark-text);
    font-style: italic;
}

.testimonial-box footer {
    margin-top: 1.5rem;
    font-size: 1.05rem;
    font-style: normal;
    color: var(--medium-text);
}

.legal-content {
    padding: 4rem 0;
    background: var(--bg-white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.legal-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin: 2.5rem 0 1.5rem;
}

.legal-wrapper h3 {
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin: 2rem 0 1rem;
}

.legal-wrapper h4 {
    font-size: 1.2rem;
    color: var(--secondary-green);
    margin: 1.5rem 0 0.8rem;
}

.legal-wrapper p {
    font-size: 1rem;
    color: var(--medium-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-wrapper ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-wrapper ul li {
    font-size: 1rem;
    color: var(--medium-text);
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.legal-update {
    font-style: italic;
    color: var(--light-text);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    color: var(--primary-green);
    font-weight: 600;
}

.cookie-table td {
    color: var(--medium-text);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .guarantee-split,
    .about-split,
    .team-split,
    .credentials-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-visual,
    .intro-visual,
    .testimonial-visual,
    .guarantee-visual,
    .about-visual,
    .team-visual,
    .credentials-visual,
    .service-detail-visual {
        height: 400px;
        width: 100%;
    }

    .service-row {
        flex-direction: column;
    }

    .nav-right {
        gap: 1rem;
    }

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

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

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .process-grid,
    .trust-grid,
    .values-grid,
    .faq-grid {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}