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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a8c2e;
    --accent-color: #7ba83d;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f5;
    --bg-white: #ffffff;
    --border-color: #d4d9ce;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

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

.navigation {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.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);
    letter-spacing: -0.5px;
}

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

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

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

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

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

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

.intro-split {
    display: flex;
    align-items: stretch;
    margin: 5rem 0;
}

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

.intro-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-inline {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    transition: color 0.3s;
}

.cta-inline:hover {
    color: var(--primary-color);
}

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

.section-title {
    font-size: 2.75rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.process-split {
    display: flex;
    align-items: stretch;
    background: var(--bg-light);
    margin: 5rem 0;
}

.process-left {
    flex: 1.2;
    padding: 4rem 3rem;
}

.process-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.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: 800;
    color: var(--accent-color);
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.process-right {
    flex: 0.8;
    position: relative;
    overflow: hidden;
}

.process-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

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

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

.service-item {
    display: flex;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s;
}

.service-item:hover {
    box-shadow: var(--shadow-hover);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item img {
    width: 45%;
    object-fit: cover;
    display: block;
}

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

.service-info h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

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

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

.testimonial-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1.125rem;
    font-style: normal;
    opacity: 0.9;
}

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

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

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.cta-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta {
    padding: 5rem 2rem;
    background: var(--bg-white);
    text-align: center;
}

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

.final-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.25rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: var(--bg-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.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 -2px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

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

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

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

.cookie-accept:hover {
    background: var(--accent-color);
}

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

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

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

.page-hero-split .hero-left {
    background: var(--bg-light);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-story {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-block {
    flex: 1;
}

.story-block h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-block p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-values-split {
    display: flex;
    align-items: stretch;
    background: var(--bg-light);
}

.values-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.values-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-right {
    flex: 1;
    padding: 4rem 3rem;
}

.values-right h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

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

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.team-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.team-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.numbers-split {
    display: flex;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 5rem 2rem;
}

.numbers-left {
    flex: 1;
    padding-right: 3rem;
}

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

.numbers-left p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
}

.numbers-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

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

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

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

.cert-container p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.cert-list li {
    padding: 1rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

.services-hero {
    background: var(--bg-light);
    padding: 5rem 2rem;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    margin: 4rem 0;
}

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

.service-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.service-right h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-right > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 0.75rem;
}

.price-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.price-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-service {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

.additional-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

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

.additional-item p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.additional-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

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

.info-block {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.info-block p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-hero {
    background: var(--bg-light);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-main-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.contact-info {
    flex: 1;
}

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

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

.contact-block h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-block a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    opacity: 0.8;
}

.contact-map {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 80, 22, 0.9);
    color: var(--bg-white);
    padding: 1.5rem;
    text-align: center;
}

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

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

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

.dept-card {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

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

.dept-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.dept-email a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.dept-email a:hover {
    text-decoration: underline;
}

.contact-form-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-intro-text {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

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

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

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

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

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

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

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

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

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.selected-service {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.selected-service span {
    font-weight: 700;
    color: var(--secondary-color);
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.legal-page {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

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

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

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

.legal-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

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

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

.legal-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

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

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

.legal-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background: var(--bg-light);
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-color);
    font-weight: 600;
}

.cookies-table td {
    padding: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 992px) {
    .hero-split,
    .intro-split,
    .process-split,
    .form-split,
    .page-hero-split,
    .story-container,
    .about-values-split,
    .numbers-split,
    .service-detail-split,
    .contact-main-split {
        flex-direction: column;
    }

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

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

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-item img {
        width: 100%;
        height: 300px;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .numbers-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

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

    .section-title,
    .services-hero-content h1 {
        font-size: 2rem;
    }

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

    .hero-left,
    .intro-text,
    .process-left,
    .service-right {
        padding: 2rem 1.5rem;
    }

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

    .thanks-actions a {
        width: 100%;
    }
}
