:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2c7da0;
    --accent-color: #e76f51;
    --dark-text: #2b2d42;
    --light-text: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #52b788;
}

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

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

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

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

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

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

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

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

.nav-main {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    background: var(--bg-light);
}

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

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

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

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

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

.btn-primary:hover {
    background: #d85a3d;
    color: white;
    transform: translateY(-2px);
}

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

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

.trust-bar {
    background: var(--primary-color);
    color: white;
    padding: 50px 20px;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.split-content {
    flex: 1;
    padding: 40px 0;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.section-why {
    padding: 100px 20px;
}

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

.section-why p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-text);
}

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

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.section-services {
    padding: 100px 20px;
    background: var(--bg-light);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 40px;
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-period {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--light-text);
}

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

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.btn-select {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    padding: 14px 24px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.form-modal.active {
    display: block;
}

.form-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 50px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.form-close {
    color: var(--light-text);
    float: right;
    font-size: 2rem;
    font-weight: 400;
    cursor: pointer;
    line-height: 1;
}

.form-close:hover {
    color: var(--dark-text);
}

.form-modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-subtitle {
    color: var(--light-text);
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    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 textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    padding: 14px 24px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-submit:hover {
    background: #d85a3d;
}

.section-proof {
    padding: 100px 20px;
    background: white;
}

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

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

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

.testimonial-author strong {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--light-text);
}

.section-difference {
    padding: 100px 20px;
}

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

.section-difference p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.detail-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.detail-point h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.detail-point p {
    color: var(--light-text);
    margin: 0;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    margin-bottom: 1.25rem;
    color: white;
}

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

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

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

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

.footer-col ul li a:hover {
    color: white;
}

.btn-footer {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-footer:hover {
    background: #d85a3d;
    color: white;
}

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

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

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cta-sticky.visible {
    transform: translateY(0);
}

.cta-sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-sticky-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    background: var(--accent-color);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d85a3d;
    color: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    color: white;
    padding: 25px 20px;
    z-index: 200;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    background: var(--accent-color);
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: #d85a3d;
}

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

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

.page-hero {
    background: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.25rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 100px 20px;
}

.about-values {
    padding: 100px 20px;
    background: var(--bg-light);
}

.about-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 8px;
}

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

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

.about-team {
    padding: 100px 20px;
}

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

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

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

.team-member {
    flex: 0 1 300px;
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

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

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

.team-role {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.about-approach {
    padding: 100px 20px;
    background: var(--bg-light);
}

.about-coverage {
    padding: 100px 20px;
    text-align: center;
}

.about-coverage h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.coverage-intro {
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
}

.coverage-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.coverage-stat {
    flex: 0 1 250px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--light-text);
    font-size: 1.1rem;
}

.cta-section {
    padding: 100px 20px;
    background: var(--primary-color);
    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;
    opacity: 0.9;
}

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

.service-detail {
    margin-bottom: 100px;
}

.service-detail-header {
    margin-bottom: 40px;
}

.service-detail-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-title h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-text);
}

.service-detailed-list {
    list-style: none;
    margin: 2rem 0;
}

.service-detailed-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--dark-text);
}

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

.services-faq {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 8px;
}

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

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

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

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

.contact-info {
    flex: 1;
}

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

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

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

.contact-method a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 1rem;
}

.contact-cta {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.contact-cta p {
    margin-bottom: 1.5rem;
}

.contact-map {
    flex: 1;
}

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

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

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 111, 0.9);
    color: white;
    padding: 20px;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
}

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

.location-details p {
    color: var(--light-text);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.contact-expectations {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.expectations-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.expectation-card {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.expectation-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

.thanks-hero {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

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

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

.thanks-service-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--accent-color);
}

.thanks-service-selected h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.thanks-next-steps {
    text-align: left;
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next-steps h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--dark-text);
    line-height: 1.7;
}

.thanks-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.thanks-contact-info {
    margin-bottom: 2rem;
}

.thanks-contact-info p {
    color: var(--light-text);
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.thanks-why-us {
    padding: 100px 20px;
}

.thanks-why-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.legal-page {
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

.legal-page h3 {
    font-size: 1.35rem;
    color: var(--secondary-color);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

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

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

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

.legal-page a {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 40px 30px;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .trust-items {
        flex-direction: column;
        gap: 30px;
    }

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

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

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

    .nav-links {
        gap: 1rem;
    }

    .values-grid,
    .faq-grid,
    .benefits-grid {
        flex-direction: column;
    }

    .value-card,
    .faq-item,
    .benefit-card {
        flex: 1 1 100%;
    }

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

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

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

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

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

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

    .service-detail-title {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .nav-links {
        font-size: 0.9rem;
        gap: 0.75rem;
    }

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

    .hero-content p {
        font-size: 1.05rem;
    }

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

    .section-header-center h2,
    .section-proof h2,
    .about-values h2,
    .about-team h2,
    .services-faq h2,
    .contact-expectations h2,
    .thanks-why-us h2,
    .about-coverage h2,
    .cta-section h2 {
        font-size: 1.85rem;
    }

    .section-why h2,
    .section-difference h2 {
        font-size: 1.85rem;
    }

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