* {
    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: #2d3436;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

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

.btn-accept {
    background-color: #00b894;
    color: white;
}

.btn-accept:hover {
    background-color: #00a383;
}

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

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

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
}

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

.nav-links a {
    color: #636e72;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00b894;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.hero-text p {
    font-size: 1.25rem;
    color: #636e72;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    height: 90vh;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #00b894;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #00a383;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}

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

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

.intro-image {
    flex: 1;
    padding: 0 2rem;
}

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

.intro-content {
    flex: 1;
    padding: 2rem 5%;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.intro-content p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: #00b894;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:hover {
    gap: 0.8rem;
}

.link-arrow::after {
    content: '→';
}

.services-preview {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #636e72;
}

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

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

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

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

.service-image {
    flex: 1;
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.service-info p {
    color: #636e72;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00b894;
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #2d3436;
    color: white;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.service-cta:hover {
    background-color: #00b894;
}

.trust-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.trust-left {
    flex: 1;
}

.trust-left h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3436;
}

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

.stat-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00b894;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #636e72;
}

.trust-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background-color: white;
    border-left: 4px solid #00b894;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2d3436;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #636e72;
}

.process-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2d3436;
}

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

.process-step {
    flex: 1;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00b894;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.process-step p {
    color: #636e72;
    line-height: 1.7;
}

.form-section-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.form-left p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 2rem;
}

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

.benefit-item {
    color: #00b894;
    font-weight: 600;
}

.form-right {
    flex: 1;
}

.booking-form {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #dfe6e9;
    border-radius: 5px;
    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: #00b894;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #00b894;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #00a383;
}

.final-cta-split {
    display: flex;
    min-height: 60vh;
}

.final-left {
    flex: 1;
    overflow: hidden;
}

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

.final-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2d3436;
    color: white;
}

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

.final-right p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: #2d3436;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #00b894;
    color: white;
}

.main-footer {
    background-color: #2d3436;
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 3rem;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #00b894;
}

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

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

.page-hero-split {
    display: flex;
    min-height: 50vh;
    align-items: center;
    padding: 3rem 5%;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    padding-right: 3rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.hero-content p {
    font-size: 1.3rem;
    color: #636e72;
}

.hero-image-page {
    flex: 1;
}

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

.services-detailed {
    padding: 5rem 5%;
}

.service-detail-split {
    display: flex;
    margin-bottom: 5rem;
    gap: 4rem;
    align-items: center;
}

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

.detail-image {
    flex: 1;
}

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

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.detail-content p {
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.detail-features {
    margin-bottom: 2rem;
}

.detail-features h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.detail-features ul {
    list-style: none;
    padding-left: 0;
}

.detail-features li {
    padding: 0.5rem 0;
    color: #636e72;
    position: relative;
    padding-left: 1.8rem;
}

.detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
}

.price-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #00b894;
}

.price-label {
    font-size: 0.9rem;
    color: #636e72;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00b894;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: #636e72;
}

.cta-detail {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d3436;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-detail:hover {
    background-color: #00b894;
}

.cta-banner-split {
    display: flex;
    padding: 5rem 5%;
    background-color: #f8f9fa;
    gap: 3rem;
    align-items: center;
}

.banner-left {
    flex: 1;
}

.banner-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.banner-left p {
    font-size: 1.1rem;
    color: #636e72;
}

.banner-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-large {
    padding: 1.2rem 3rem;
    background-color: #00b894;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background-color: #00a383;
    transform: scale(1.05);
}

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

.about-hero-text {
    flex: 1;
    padding: 4rem 5%;
}

.about-hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.about-hero-text p {
    font-size: 1.3rem;
    color: #636e72;
}

.about-hero-image {
    flex: 1;
    height: 70vh;
    overflow: hidden;
}

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

.mission-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
    background-color: #f8f9fa;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

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

.mission-image {
    flex: 1;
}

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

.values-section {
    padding: 5rem 5%;
}

.values-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2d3436;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    min-width: 280px;
}

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

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

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

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

.team-image {
    flex: 1;
}

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

.team-content {
    flex: 1;
}

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

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

.approach-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.approach-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2d3436;
}

.approach-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.approach-left {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.approach-item p {
    color: #636e72;
    line-height: 1.7;
}

.approach-right {
    flex: 1;
}

.approach-right img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-us-split {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

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

.why-image {
    flex: 1;
}

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

.cta-about {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.cta-about p {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 5rem 5%;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #636e72;
}

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

.contact-info {
    flex: 1;
}

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

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

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

.info-block p {
    color: #636e72;
    line-height: 1.8;
}

.info-block a {
    color: #00b894;
    text-decoration: underline;
}

.info-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #95a5a6;
}

.contact-map {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 184, 148, 0.9);
    padding: 1.5rem;
    color: white;
}

.faq-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2d3436;
}

.faq-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

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

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

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

.languages-note {
    padding: 4rem 5%;
    text-align: center;
}

.languages-note h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.languages-note p {
    font-size: 1.2rem;
    color: #636e72;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-hero-split {
    display: flex;
    min-height: 70vh;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.5;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #00b894;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.service-note {
    color: #2d3436;
    font-size: 1rem;
}

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

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d3436;
}

.next-steps-split {
    display: flex;
    gap: 2rem;
}

.next-step {
    flex: 1;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #00b894;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.next-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2d3436;
}

.next-step p {
    color: #636e72;
    font-size: 0.95rem;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: #00b894;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #00a383;
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2d3436;
    border: 2px solid #2d3436;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d3436;
    color: white;
}

.thanks-image {
    flex: 1;
}

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

.thanks-info {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.thanks-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3436;
}

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

.info-card {
    flex: 1;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.last-updated {
    color: #95a5a6;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #2d3436;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2d3436;
}

.legal-content p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-content li {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .form-section-split,
    .final-cta-split,
    .service-detail-split,
    .about-hero-split,
    .mission-split,
    .team-split,
    .approach-split,
    .why-us-split,
    .contact-main-split,
    .thanks-hero-split,
    .cta-banner-split {
        flex-direction: column;
    }

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

    .process-split,
    .next-steps-split,
    .info-cards-split,
    .faq-split {
        flex-direction: column;
    }

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

    .hero-right,
    .about-hero-image {
        height: 50vh;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

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

    .nav-links {
        gap: 1rem;
    }

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

    .section-header-center h2,
    .process-section h2,
    .values-section h2,
    .approach-section h2,
    .faq-section h2,
    .legal-page h1 {
        font-size: 2rem;
    }

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

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

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

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