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

:root {
    --primary-color: #2c5f7c;
    --primary-dark: #1a3a4d;
    --secondary-color: #e67e22;
    --accent-color: #2ecc71;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-menu li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: var(--bg-light);
}

.hero-content {
    max-width: 600px;
}

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

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

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

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #d35400;
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

.content-left h2 {
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.trust-markers {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 3rem 0;
}

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

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

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

.marker-text {
    font-size: 1.125rem;
    opacity: 0.9;
}

.services-showcase {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

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

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-service-select {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

.process-step h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-light);
}

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

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

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

.form-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.benefits-list {
    margin-top: 2rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.form-right {
    flex: 1;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.location-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.location-split {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    flex: 1;
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--bg-white);
    padding: 2rem;
}

.location-overlay h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.cta-final {
    padding: 5rem 0;
    background: var(--primary-dark);
    color: var(--bg-white);
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-col ul li a {
    color: var(--bg-white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

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

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d35400;
    color: var(--bg-white);
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    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;
}

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

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

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

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

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

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

.btn-cookie-reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.page-hero {
    background: var(--primary-dark);
    color: var(--bg-white);
    padding: 4rem 0;
    text-align: center;
}

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

.page-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

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

.mission-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.mission-card {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.member-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.values-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.values-list li strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.cta-section {
    padding: 5rem 0;
    background: var(--primary-dark);
    color: var(--bg-white);
}

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

.service-detail-item {
    margin-bottom: 5rem;
}

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

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

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-features {
    margin: 2rem 0;
}

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

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.25rem;
}

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

.service-detail-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.featured-service {
    position: relative;
}

.service-badge-large {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.125rem;
    font-weight: 700;
    z-index: 10;
}

.savings-note {
    background: var(--bg-light);
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    font-size: 1.125rem;
}

.comparison-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.comparison-table {
    width: 100%;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: var(--primary-dark);
    color: var(--bg-white);
}

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

.comparison-table th {
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table .price-row {
    background: var(--bg-light);
    font-weight: 700;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

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

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

.office-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.office-card h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.detail-item p,
.detail-item a {
    color: var(--text-light);
    line-height: 1.8;
}

.office-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
    font-style: italic;
    color: var(--text-light);
}

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

.contact-form-note {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
}

.method-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.map-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.map-card {
    flex: 1;
}

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

.map-placeholder {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

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

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

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

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

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

.thanks-lead {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    flex: 1;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

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

.step-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.thanks-additional {
    margin-top: 3rem;
}

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

.additional-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.additional-links li a {
    color: var(--primary-color);
    font-weight: 500;
}

.testimonials-thanks {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-content h2 {
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .faq-item {
        flex: 1 1 100%;
    }

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

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

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

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

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

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

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

    .section-title-center {
        font-size: 2rem;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}