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

:root {
    --primary-color: #1a4d6d;
    --secondary-color: #e8927c;
    --accent-color: #c7956d;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
}

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

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-right a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.nav-right a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

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

.hero-left {
    flex: 1;
    padding: var(--spacing-xl) 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-left p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 550px;
}

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

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

.trust-strip {
    display: flex;
    justify-content: space-around;
    padding: var(--spacing-lg) 5%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-item strong {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.trust-item span {
    font-size: 1rem;
    opacity: 0.9;
}

.intro-asymmetric {
    display: flex;
    padding: var(--spacing-xxl) 5%;
    gap: var(--spacing-xl);
    align-items: center;
}

.intro-text {
    flex: 1.3;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.intro-visual {
    flex: 0.7;
}

.intro-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-grid {
    padding: var(--spacing-xxl) 5%;
    background-color: var(--bg-light);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.service-card-split {
    display: flex;
    margin-bottom: var(--spacing-lg);
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-split:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

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

.service-left {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-left p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

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

.testimonial-wave {
    padding: var(--spacing-xxl) 10%;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.testimonial-wave blockquote {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-wave p {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-wave cite {
    font-style: normal;
    font-size: 1.1rem;
    opacity: 0.9;
}

.why-us-offset {
    padding: var(--spacing-xxl) 5%;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.why-item {
    flex: 1 1 calc(50% - var(--spacing-md));
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

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

.cta-banner-dark {
    padding: var(--spacing-xxl) 10%;
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
}

.cta-banner-dark h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner-dark p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.order-section {
    padding: var(--spacing-xxl) 5%;
    background-color: var(--bg-light);
}

.form-container-split {
    display: flex;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-left-info {
    flex: 0.8;
    padding: var(--spacing-xl);
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-left-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    font-size: 1.5rem;
    font-weight: 700;
}

.form-right-form {
    flex: 1.2;
    padding: var(--spacing-xl);
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.final-trust {
    padding: var(--spacing-lg) 5%;
    text-align: center;
    background-color: var(--bg-white);
}

.trust-line {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: var(--spacing-xxl) 5% var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #153a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: var(--bg-white);
}

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

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

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

.btn-light:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #153a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.btn-cookie-accept:hover {
    background-color: #218838;
}

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

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

.page-hero-simple {
    padding: var(--spacing-xxl) 10%;
    text-align: center;
    background-color: var(--bg-light);
}

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

.page-hero-simple p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-intro-split {
    display: flex;
    padding: var(--spacing-xxl) 5%;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.values-block {
    padding: var(--spacing-xxl) 5%;
    background-color: var(--bg-light);
}

.values-block h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.values-row {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: var(--spacing-lg);
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.numbers-offset {
    padding: var(--spacing-xxl) 5%;
}

.numbers-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.number-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: var(--spacing-md);
}

.big-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-simple {
    padding: var(--spacing-xxl) 5%;
    background-color: var(--bg-light);
}

.team-simple h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.team-grid {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    padding: var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

.approach-wave {
    padding: var(--spacing-xxl) 10%;
}

.approach-wave h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

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

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

.sustainability-block {
    padding: var(--spacing-xxl) 5%;
    background-color: var(--bg-light);
}

.sustainability-split {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.sustainability-text {
    flex: 1;
}

.sustainability-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.sustainability-image {
    flex: 1;
}

.sustainability-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-simple {
    padding: var(--spacing-xxl) 10%;
    text-align: center;
}

.cta-simple h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.services-detailed {
    padding: var(--spacing-xxl) 5%;
}

.service-detail-card {
    margin-bottom: var(--spacing-xl);
}

.service-detail-split {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-detail-left {
    padding: var(--spacing-lg);
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-detail-right p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-detail-right h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.service-detail-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.price-label {
    font-weight: 600;
    color: var(--text-light);
}

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

.service-detail-left img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.services-cta-block {
    padding: var(--spacing-xxl) 10%;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.services-cta-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    padding: var(--spacing-xxl) 5%;
    gap: var(--spacing-xl);
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.office-block {
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.office-block p {
    margin-bottom: 1rem;
}

.contact-map-side {
    flex: 1;
}

.contact-map-side h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.map-placeholder {
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.contact-note {
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.contact-additional {
    padding: var(--spacing-xxl) 10%;
    background-color: var(--bg-light);
}

.contact-additional h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

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

.faq-item {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

.contact-cta {
    padding: var(--spacing-xxl) 10%;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.thanks-hero {
    padding: var(--spacing-xxl) 10%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.thanks-details {
    margin-bottom: 3rem;
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

#service-selected {
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 220px;
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    display: block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.thanks-contact-info {
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 8px;
}

.thanks-testimonial {
    padding: var(--spacing-xxl) 10%;
    background-color: var(--bg-light);
}

.thanks-testimonial blockquote {
    max-width: 800px;
    margin: 0 auto;
}

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

.thanks-testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.legal-page {
    padding: var(--spacing-xxl) 10%;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-container p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1.5rem;
}

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

.legal-container a:hover {
    color: var(--secondary-color);
}

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

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

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

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

    h2 {
        font-size: 1.75rem;
    }

    .hero-split {
        flex-direction: column;
    }

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

    .hero-right img {
        height: 50vh;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

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

    .service-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-container-split {
        flex-direction: column;
    }

    .about-intro-split {
        flex-direction: column;
    }

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

    .sustainability-split {
        flex-direction: column;
    }

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

    .contact-split {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

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

    .nav-right {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-strip {
        flex-direction: column;
        gap: 2rem;
    }

    .why-grid {
        flex-direction: column;
    }

    .numbers-grid {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    h1 {
        font-size: 1.75rem;
    }

    .hero-left h1 {
        font-size: 1.9rem;
    }

    .section-header-center h2 {
        font-size: 1.8rem;
    }

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

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

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-xxl: 3rem;
    }

    .btn-primary,
    .btn-light,
    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .btn-sticky {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}