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

:root {
    --primary-color: #2C5F2D;
    --secondary-color: #97BC62;
    --accent-color: #FF6B35;
    --dark-color: #1A1A1A;
    --light-color: #F8F9FA;
    --gray-color: #6C757D;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: #fff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.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;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--primary-color);
    color: #fff;
}

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

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

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

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

.nav-container {
    max-width: 1400px;
    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);
}

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

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hero-split {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eff5 100%);
}

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

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #234d24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

.intro-split {
    padding: 5rem 2rem;
    background-color: #fff;
}

.intro-split.reverse {
    background-color: var(--light-color);
}

.split-image,
.split-text {
    flex: 1;
    min-width: 300px;
}

.intro-split .split-image img,
.intro-split .split-text {
    border-radius: var(--border-radius);
}

.intro-split .split-image img {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.services-intro {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.services-header h2 {
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.15rem;
    color: var(--gray-color);
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card-split.reverse {
    flex-direction: row-reverse;
    background-color: #fff;
}

.service-content {
    flex: 1;
    min-width: 280px;
}

.service-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

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

.service-image {
    flex: 1;
    min-width: 280px;
}

.service-image img {
    border-radius: var(--border-radius);
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.btn-select {
    padding: 0.9rem 1.8rem;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-select:hover {
    background-color: #e55a29;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.process-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2C5F2D 0%, #1f4520 100%);
    color: #fff;
}

.process-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.process-text {
    flex: 1;
    min-width: 300px;
}

.process-text h2 {
    color: #fff;
    margin-bottom: 2rem;
}

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

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 50px;
}

.step h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.step p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.process-image {
    flex: 1;
    min-width: 300px;
}

.process-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonials-split {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.testimonials-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-wrapper h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.author {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    font-style: normal;
}

.cta-split {
    padding: 5rem 2rem;
    background-color: #fff;
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-text h2 {
    margin-bottom: 1.5rem;
}

.cta-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px 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: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #234d24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
}

.final-info-split {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.final-info-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.info-left {
    flex: 1;
    min-width: 300px;
}

.info-left h3 {
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-color);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.info-right {
    flex: 1;
    min-width: 300px;
}

.info-right img {
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.main-footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.page-header-split {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f4520 100%);
    color: #fff;
}

.page-header-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.header-text {
    flex: 1;
    min-width: 300px;
}

.header-text h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.header-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

.header-image {
    flex: 1;
    min-width: 300px;
}

.header-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.service-features h4 {
    margin-bottom: 1rem;
}

.service-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-color);
}

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

.price-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 600;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    height: 100%;
    object-fit: cover;
}

.services-cta-split {
    padding: 5rem 2rem;
    background-color: #fff;
}

.services-cta-split .cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.cta-left {
    flex: 1;
    min-width: 300px;
}

.cta-right {
    flex: 1;
    min-width: 300px;
}

.about-hero-split {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eff5 100%);
}

.about-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-hero-text {
    flex: 1;
    min-width: 300px;
}

.about-hero-text h1 {
    margin-bottom: 1.5rem;
}

.about-hero-image {
    flex: 1;
    min-width: 300px;
}

.about-hero-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-split {
    padding: 5rem 2rem;
    background-color: #fff;
}

.story-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-text {
    flex: 1.2;
    min-width: 300px;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.team-split {
    padding: 5rem 2rem;
    background-color: #fff;
}

.team-intro {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-color);
}

.team-image-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.team-image-left,
.team-image-right {
    flex: 1;
    min-width: 300px;
}

.team-image-left img,
.team-image-right img {
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.approach-split {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.approach-split.reverse {
    background-color: #fff;
}

.approach-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.approach-text {
    flex: 1;
    min-width: 300px;
}

.approach-phases {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.phase {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.phase h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.phase p {
    color: var(--gray-color);
    margin: 0;
}

.credentials-split {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.credentials-content {
    max-width: 1400px;
    margin: 0 auto;
}

.credentials-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.credential-item {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.credential-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.credential-item p {
    color: var(--gray-color);
    margin: 0;
}

.about-cta-split {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f4520 100%);
}

.about-cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-cta-text {
    flex: 1;
    min-width: 300px;
    color: #fff;
}

.about-cta-text h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.about-cta-image {
    flex: 1;
    min-width: 300px;
}

.about-cta-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-hero-split {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f4520 100%);
}

.contact-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-hero-text {
    flex: 1;
    min-width: 300px;
    color: #fff;
}

.contact-hero-text h1 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

.contact-hero-image {
    flex: 1;
    min-width: 300px;
}

.contact-hero-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info-split {
    padding: 5rem 2rem;
    background-color: #fff;
}

.contact-info-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-item p {
    color: var(--gray-color);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.contact-note {
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.contact-note p {
    margin: 0;
    color: var(--gray-color);
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
}

.contact-map-placeholder img {
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    height: 500px;
    object-fit: cover;
    width: 100%;
}

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

.approach-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.approach-left {
    flex: 1;
    min-width: 300px;
}

.approach-right {
    flex: 1.3;
    min-width: 300px;
}

.approach-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-icon {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 50px;
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-color);
    margin: 0;
}

.contact-faq-split {
    padding: 5rem 2rem;
    background-color: #fff;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray-color);
    margin: 0;
}

.contact-final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f4520 100%);
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.final-cta-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.final-cta-content a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thanks-split {
    padding: 5rem 2rem;
    background-color: var(--light-color);
    min-height: 60vh;
}

.thanks-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.thanks-left {
    flex: 1.3;
    min-width: 300px;
}

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

.thanks-left h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #e8f5e9;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.next-steps {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius);
}

.next-steps h3 {
    margin-bottom: 1rem;
}

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

.next-steps li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-color);
}

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

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thanks-right {
    flex: 1;
    min-width: 300px;
}

.thanks-right img {
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 2rem;
}

.contact-reminder {
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius);
}

.contact-reminder h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-reminder p {
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.contact-reminder a {
    color: var(--primary-color);
    font-weight: 600;
}

.hours {
    font-size: 0.9rem;
    margin-top: 1rem;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: var(--light-color);
    min-height: 60vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: block;
}

.legal-container h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.legal-container h4 {
    color: var(--dark-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-container ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container li {
    list-style: disc;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.legal-container p {
    color: var(--gray-color);
    line-height: 1.8;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-content,
    .intro-split,
    .service-card-split,
    .process-content-split,
    .testimonial-cards,
    .cta-content,
    .page-header-split,
    .service-detail-split,
    .services-cta-split .cta-content,
    .about-hero-content,
    .story-content,
    .team-image-split,
    .approach-split,
    .about-cta-content,
    .contact-hero-content,
    .contact-info-split,
    .approach-content-split,
    .thanks-content {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .hero-split,
    .intro-split,
    .services-intro,
    .process-section,
    .testimonials-split,
    .cta-split,
    .final-info-split {
        padding: 3rem 1rem;
    }
}