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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

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

ul {
    list-style: none;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: #2c5f2d;
}

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

.nav-links a {
    font-size: 1rem;
    color: #555;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c5f2d;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem 6rem 4rem 4rem;
    background: #f9faf8;
}

.hero-content {
    max-width: 580px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #2c5f2d;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #234a23;
}

.cta-secondary {
    display: inline-block;
    background: #fff;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2c5f2d;
    color: #fff;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

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

.intro-image {
    overflow: hidden;
}

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

.intro-text {
    padding: 5rem 4rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-preview {
    padding: 6rem 2rem;
    background: #f9faf8;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
}

.services-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 1.5rem;
    color: #666;
    margin-bottom: 1.2rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.service-cta {
    display: block;
    background: #2c5f2d;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #234a23;
}

.trust-split {
    display: flex;
    min-height: 550px;
}

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

.trust-content {
    padding: 5rem 4rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-image {
    overflow: hidden;
}

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

.testimonials-section {
    padding: 6rem 2rem;
    background: #f9faf8;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f2d;
}

.process-split {
    display: flex;
    min-height: 550px;
}

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

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

.process-image {
    overflow: hidden;
}

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

.process-content {
    padding: 5rem 4rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-text p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 6rem 2rem;
    background: #f9faf8;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.service-form {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    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: #2c5f2d;
}

.btn-submit {
    width: 100%;
    background: #2c5f2d;
    color: #fff;
    padding: 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #234a23;
}

.final-cta-split {
    display: flex;
    min-height: 450px;
}

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

.final-left {
    padding: 4rem;
    background: #2c5f2d;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.final-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.final-right {
    overflow: hidden;
}

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

.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col p {
    line-height: 1.7;
    color: #999;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col a {
    color: #999;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

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

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

.sticky-btn {
    display: block;
    background: #2c5f2d;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(44, 95, 45, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 1100;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept {
    background: #2c5f2d;
    color: #fff;
}

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.page-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    color: #fff;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

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

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

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

.service-detail-split {
    display: flex;
    min-height: 550px;
    margin-bottom: 4rem;
}

.service-detail-split.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;
    background: #f9faf8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.service-features {
    margin: 1.5rem 0 2rem;
    padding-left: 1.5rem;
}

.service-features li {
    list-style: disc;
    color: #666;
    margin-bottom: 0.5rem;
}

.cta-service {
    display: inline-block;
    background: #2c5f2d;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #234a23;
}

.services-cta {
    padding: 6rem 2rem;
    background: #2c5f2d;
    text-align: center;
}

.services-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.about-split {
    display: flex;
    min-height: 550px;
}

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

.about-content {
    padding: 5rem 4rem;
    background: #f9faf8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    overflow: hidden;
}

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

.values-section {
    padding: 6rem 2rem;
    background: #fff;
    text-align: center;
}

.values-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: #f9faf8;
    padding: 2.5rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.team-split {
    display: flex;
    min-height: 550px;
}

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

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

.team-image {
    overflow: hidden;
}

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

.team-content {
    padding: 5rem 4rem;
    background: #f9faf8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-section {
    padding: 6rem 2rem;
    background: #fff;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.approach-split {
    display: flex;
    gap: 3rem;
}

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

.approach-left h3,
.approach-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.approach-left p,
.approach-right p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.commitment-split {
    display: flex;
    min-height: 550px;
}

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

.commitment-content {
    padding: 5rem 4rem;
    background: #f9faf8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commitment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.commitment-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.commitment-image {
    overflow: hidden;
}

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

.about-cta {
    padding: 6rem 2rem;
    background: #2c5f2d;
    text-align: center;
}

.about-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

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

.contact-info {
    padding: 5rem 4rem;
    background: #f9faf8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2c5f2d;
}

.info-block p,
.info-block a {
    color: #666;
    line-height: 1.8;
}

.info-block a {
    color: #2c5f2d;
    text-decoration: underline;
}

.contact-image {
    overflow: hidden;
}

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

.contact-details {
    padding: 6rem 2rem;
    background: #fff;
}

.details-content {
    max-width: 1200px;
    margin: 0 auto;
}

.details-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.details-split {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.detail-item {
    flex: 1;
    min-width: 280px;
}

.detail-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.detail-item p {
    color: #666;
    line-height: 1.7;
}

.faq-section {
    padding: 6rem 2rem;
    background: #f9faf8;
}

.faq-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.contact-cta {
    padding: 6rem 2rem;
    background: #2c5f2d;
    text-align: center;
}

.contact-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 8rem 2rem;
    background: #f9faf8;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 2rem;
}

.thanks-message p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-weight: 600;
    color: #2c5f2d;
    font-size: 1.2rem;
}

.next-steps-split {
    display: flex;
    min-height: 550px;
}

.next-steps-content,
.next-steps-image {
    flex: 1;
}

.next-steps-content {
    padding: 5rem 4rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.next-steps-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

.next-steps-image {
    overflow: hidden;
}

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

.additional-info {
    padding: 6rem 2rem;
    background: #f9faf8;
}

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

.info-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

.thanks-cta-split {
    display: flex;
    min-height: 400px;
}

.thanks-cta-left,
.thanks-cta-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-cta-left {
    background: #fff;
}

.thanks-cta-right {
    background: #f9faf8;
}

.thanks-cta-left h2,
.thanks-cta-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-cta-left p,
.thanks-cta-right p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thanks-cta-left a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-page {
    padding: 4rem 2rem;
    background: #f9faf8;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-date {
    color: #999;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

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

.legal-content li {
    list-style: disc;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: #333;
}

.legal-nav {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.legal-nav a {
    color: #2c5f2d;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .process-split,
    .final-cta-split,
    .service-detail-split,
    .about-split,
    .team-split,
    .commitment-split,
    .contact-split,
    .next-steps-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-text,
    .trust-content,
    .process-content,
    .final-left,
    .service-detail-content,
    .about-content,
    .team-content,
    .commitment-content,
    .contact-info,
    .next-steps-content {
        padding: 3rem 2rem;
    }

    .hero-right,
    .intro-image,
    .trust-image,
    .process-image,
    .final-right,
    .service-detail-image,
    .about-image,
    .team-image,
    .commitment-image,
    .contact-image,
    .next-steps-image {
        min-height: 350px;
    }

    .approach-split,
    .details-split {
        flex-direction: column;
    }

    .thanks-cta-split {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid #eee;
    }

    .nav-toggle {
        display: flex;
    }

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

    .section-header h2,
    .testimonials-section h2,
    .values-section h2,
    .about-cta h2,
    .services-cta h2,
    .contact-cta h2 {
        font-size: 2rem;
    }

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

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

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

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

    .legal-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .form-container {
        padding: 0;
    }

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