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

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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: 0.3s;
}

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

.btn-sticky {
    background-color: #e74c3c;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s;
    display: inline-block;
}

.btn-sticky:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
}

.hero-right {
    flex: 1;
}

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

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    padding: 1rem 2rem;
    border: 2px solid #3498db;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #2c3e50;
    padding: 1rem 2rem;
    border: 2px solid #2c3e50;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #2c3e50;
    color: white;
}

.btn-large {
    background-color: #2ecc71;
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-block;
    transition: all 0.3s;
}

.btn-large:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.stats-section {
    background-color: #ecf0f1;
    padding: 3rem 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 1rem;
    color: #7f8c8d;
}

.split-content-section {
    display: flex;
    min-height: 500px;
}

.split-left {
    flex: 1;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

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

.split-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-right p {
    font-size: 1.125rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.problem-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.problem-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.problem-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.services-preview {
    padding: 5rem 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.25rem;
    color: #7f8c8d;
}

.services-grid-split {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1 1 300px;
    background-color: white;
    border: 2px solid #ecf0f1;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.15);
    transform: translateY(-4px);
}

.service-card.featured {
    background-color: #3498db;
    color: white;
    border-color: #2980b9;
}

.service-card.featured .service-price,
.service-card.featured h3,
.service-card.featured li {
    color: white;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2ecc71;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #7f8c8d;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.service-card.featured .service-features li:before {
    color: #ffffff;
}

.btn-service {
    background-color: #2ecc71;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
}

.btn-service:hover {
    background-color: #27ae60;
}

.service-card.featured .btn-service {
    background-color: white;
    color: #3498db;
}

.service-card.featured .btn-service:hover {
    background-color: #ecf0f1;
}

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

.testimonial-section {
    padding: 5rem 0;
    background-color: #2c3e50;
    color: white;
}

.testimonial-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

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

.testimonial-card {
    flex: 1 1 300px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
    color: #ecf0f1;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

.trust-section {
    display: flex;
    background-color: #f8f9fa;
}

.split-left-trust {
    flex: 1;
    padding: 4rem 3rem;
}

.split-left-trust h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.trust-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.trust-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.split-right-trust {
    flex: 1;
}

.split-right-trust img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.form-section {
    padding: 5rem 0;
    background-color: #ecf0f1;
}

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

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

.btn-submit {
    background-color: #2ecc71;
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.faq-section {
    padding: 5rem 0;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
}

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

.faq-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.final-cta-section {
    padding: 5rem 0;
    background-color: #3498db;
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.final-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-column p {
    color: #95a5a6;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background-color: #2ecc71;
    color: white;
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-header {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    padding: 5rem 0 3rem;
    text-align: center;
}

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

.header-subtitle {
    font-size: 1.5rem;
    color: #ecf0f1;
}

.team-section {
    padding: 5rem 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.team-member {
    flex: 1 1 calc(25% - 1.5rem);
    text-align: center;
}

.team-member img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.values-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.values-split {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 300px;
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.value-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.approach-section {
    display: flex;
    padding: 5rem 0;
}

.split-left-approach {
    flex: 1;
}

.split-left-approach img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 700px;
}

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

.split-right-approach h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.approach-step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

.numbers-section {
    padding: 5rem 0;
    background-color: #ecf0f1;
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.numbers-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.number-item {
    text-align: center;
    flex: 1 1 200px;
}

.big-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1.125rem;
    color: #7f8c8d;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.services-detail-section {
    padding: 5rem 0;
}

.service-detail-card {
    display: flex;
    margin-bottom: 4rem;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-image {
    flex: 1;
}

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

.service-badge {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-badge.popular {
    background-color: #e74c3c;
}

.service-badge.express {
    background-color: #f39c12;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

.price-period {
    font-size: 1.25rem;
    color: #7f8c8d;
    font-weight: 400;
}

.service-description {
    font-size: 1.125rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.service-includes li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #7f8c8d;
    line-height: 1.6;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
    font-size: 1.25rem;
}

.featured-service {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.featured-service .service-detail-content h2,
.featured-service .service-detail-content h3,
.featured-service .service-description,
.featured-service .service-includes li {
    color: white;
}

.featured-service .service-price-large {
    color: #ffffff;
}

.featured-service .service-includes li:before {
    color: #ffffff;
}

.pricing-info-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

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

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

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

.info-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.comparison-section {
    padding: 5rem 0;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #ecf0f1;
}

.comparison-table th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.contact-section {
    padding: 5rem 0;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-method p {
    color: #7f8c8d;
    line-height: 1.8;
}

.contact-method a {
    color: #3498db;
    text-decoration: none;
}

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

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-description {
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.form-description a {
    color: #3498db;
    text-decoration: none;
}

.form-description a:hover {
    text-decoration: underline;
}

.map-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
}

.map-overlay p {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.map-description {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.125rem;
    line-height: 1.6;
}

.faq-contact-section {
    padding: 5rem 0;
}

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

.legal-page {
    padding: 5rem 0;
}

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

.last-updated {
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.legal-page p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-page ul li {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
}

.cookie-table td {
    color: #7f8c8d;
}

.thanks-section {
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #2ecc71;
    color: white;
    font-size: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-confirmation {
    margin-bottom: 3rem;
}

.selected-service {
    font-size: 1.125rem;
    color: #2c3e50;
    background-color: #ecf0f1;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-text {
    flex: 1;
    color: #7f8c8d;
    line-height: 1.6;
    padding-top: 0.5rem;
}

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

.contact-reminder {
    background-color: #fff3cd;
    border-left: 4px solid #f39c12;
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-reminder p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

.contact-reminder a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .hero-split,
    .split-content-section,
    .trust-section,
    .approach-section,
    .contact-layout {
        flex-direction: column;
    }

    .hero-right img,
    .split-left img,
    .split-right-trust img,
    .split-left-approach img {
        min-height: 400px;
    }

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .problem-card,
    .faq-item,
    .info-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        flex-direction: column;
    }

    .hero-left h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .section-title,
    .testimonial-section h2,
    .team-section h2,
    .numbers-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }

    .services-grid-split {
        flex-direction: column;
    }

    .team-member {
        flex: 1 1 100%;
    }

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

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

    .btn-sticky {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

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

    .thanks-content h1 {
        font-size: 2rem;
    }
}
