:root {
    --primary-color: #1a5f7a;
    --secondary-color: #159895;
    --accent-color: #57c5b6;
    --dark-color: #002b36;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --border-color: #dee2e6;
    --success-color: #28a745;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 15px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 35px;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.split-left-content,
.split-right-content {
    flex: 1;
}

.split-left-img,
.split-right-img {
    flex: 1;
}

.split-left-img img,
.split-right-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.split-left-content h2,
.split-right-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.split-left-content p,
.split-right-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.btn-cta,
.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-cta-large {
    padding: 20px 50px;
    font-size: 20px;
}

.btn-cta:hover,
.btn-cta-large:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.3);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--secondary-color);
}

.btn-primary {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-secondary {
    padding: 12px 30px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.trust-indicators {
    background-color: var(--light-color);
    padding: 60px 20px;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 16px;
    color: var(--gray-color);
}

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray-color);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.benefit-text p {
    font-size: 16px;
    color: var(--gray-color);
}

.how-it-works {
    padding: 80px 20px;
    background-color: var(--white);
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 12px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.process-step p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.6;
}

.testimonial-content {
    padding-right: 40px;
}

.quote-mark {
    font-size: 80px;
    color: var(--accent-color);
    line-height: 0.5;
    margin-bottom: 20px;
}

blockquote {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 18px;
    color: var(--dark-color);
}

.testimonial-author span {
    font-size: 16px;
    color: var(--gray-color);
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.services-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

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

.service-card.featured {
    border: 3px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.service-header h3 {
    font-size: 24px;
    color: var(--dark-color);
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.service-card > p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-dark);
}

.service-features li:last-child {
    border-bottom: none;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
}

.form-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.contact-form {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.checkbox-group a {
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.form-benefit {
    font-size: 16px;
    color: var(--text-dark);
}

.why-us {
    padding: 80px 20px;
    background-color: var(--white);
}

.why-us-split {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.why-item {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.why-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.why-item p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.7;
}

.cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-box {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 35px;
}

.cta-box .btn-cta-large {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-box .btn-cta-large:hover {
    background-color: var(--light-color);
}

.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-column a:hover {
    color: var(--accent-color);
}

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

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

.btn-sticky {
    display: inline-block;
    padding: 16px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 25px 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 30px;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.story-section,
.team-approach,
.mission-section {
    padding: 80px 20px;
}

.values-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.7;
}

.team-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

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

.stat strong {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat span {
    font-size: 16px;
    color: var(--gray-color);
}

.certifications {
    padding: 80px 20px;
    background-color: var(--white);
}

.cert-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cert-item {
    padding: 15px 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-dark);
}

.numbers-section {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.number-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.big-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.number-item p {
    font-size: 16px;
    color: var(--gray-color);
}

.cta-about {
    padding: 80px 20px;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    margin-bottom: 60px;
    background-color: var(--light-color);
    border-radius: 12px;
    padding: 50px 30px;
}

.service-detail-card.featured-service {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.05), rgba(21, 152, 149, 0.05));
    border: 2px solid var(--primary-color);
}

.service-detail-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

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

.service-detail-left img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.price-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-right h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-detail-right h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--dark-color);
}

.detail-list {
    list-style: none;
    margin-bottom: 25px;
}

.detail-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.detail-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.highlight-text {
    background-color: rgba(87, 197, 182, 0.15);
    padding: 15px 20px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin: 20px 0;
    font-style: italic;
}

.badge-popular {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.financing-info {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.finance-list {
    list-style: none;
    margin-top: 20px;
}

.finance-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.finance-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.process-timeline {
    padding: 80px 20px;
    background-color: var(--white);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-item p {
    font-size: 16px;
    color: var(--gray-color);
}

.contact-info-section {
    padding: 80px 20px;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-map-box {
    flex: 1;
    position: relative;
}

.contact-map-box img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 8px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-details p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-note {
    font-size: 14px;
    color: var(--gray-color);
    font-style: italic;
}

.service-areas {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.area-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.area-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.area-card p {
    font-size: 15px;
    color: var(--gray-color);
}

.faq-contact {
    padding: 80px 20px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--gray-color);
    line-height: 1.7;
}

.why-contact {
    padding: 80px 20px;
    background-color: var(--light-color);
}

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

.benefits-list li {
    padding: 15px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.benefits-list strong {
    color: var(--primary-color);
}

.cta-contact {
    padding: 80px 20px;
}

.thanks-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    min-height: 500px;
    display: flex;
    align-items: center;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
}

.selected-service-info {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service {
    font-size: 18px;
    margin: 0;
}

.next-steps {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step p {
    font-size: 15px;
    color: var(--gray-color);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-info {
    padding: 80px 20px;
    background-color: var(--white);
}

.info-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--light-color);
    padding: 35px;
    border-radius: 12px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-card p {
    font-size: 16px;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.legal-page {
    padding: 80px 20px;
    background-color: var(--white);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.last-update {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-dark);
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.legal-back {
    margin-top: 50px;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        padding: 50px 20px;
        min-height: auto;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        padding: 50px 20px;
        gap: 40px;
    }

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

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

    .section-title-center {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .trust-grid {
        flex-direction: column;
        gap: 25px;
    }

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

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

    .btn-sticky {
        padding: 12px 20px;
        font-size: 14px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .team-stats {
        flex-direction: column;
        gap: 20px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }

    .next-steps {
        padding: 30px 20px;
    }

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

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title-center {
        font-size: 28px;
    }

    .btn-cta,
    .btn-cta-large {
        padding: 14px 30px;
        font-size: 16px;
    }

    .service-card {
        min-width: 100%;
    }

    .page-hero h1 {
        font-size: 28px;
    }

    .thanks-icon {
        width: 80px;
        height: 80px;
        font-size: 50px;
    }

    .thanks-content h1 {
        font-size: 28px;
    }
}