/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

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

.nav-right a {
    font-weight: 500;
    transition: color 0.3s;
    color: #2c3e50;
}

.nav-right a:hover {
    color: #1a5490;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.hero-content {
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #546e7a;
    max-width: 600px;
}

.hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

/* Intro Split Section */
.intro-split {
    display: flex;
    flex-direction: column;
}

.intro-content {
    padding: 4rem 5%;
    background: #ffffff;
}

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

.intro-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.intro-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

/* Services Preview Section */
.services-preview {
    padding: 5rem 5%;
    background: #f9fafb;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #546e7a;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.featured {
    border: 2px solid #1a5490;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #1a5490;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    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: #1a5490;
}

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

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

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

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #0f3a6f;
}

/* Trust Split Section */
.trust-split {
    display: flex;
    flex-direction: column;
}

.trust-content {
    padding: 4rem 5%;
    background: #1a5490;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

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

.trust-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

/* Testimonial Block */
.testimonial-block {
    padding: 5rem 5%;
    background: #f5f7fa;
    text-align: center;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: #2c3e50;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: #546e7a;
    font-style: normal;
}

/* CTA Split Section */
.cta-split {
    display: flex;
    flex-direction: column;
}

.cta-content {
    padding: 4rem 5%;
    background: #ffffff;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.cta-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.cta-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

/* Contact Form */
.contact-form {
    max-width: 600px;
}

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

.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.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #0f3a6f;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

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

.faq-item p {
    color: #546e7a;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a5490;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.3s;
}

.cta-primary:hover {
    background: #0f3a6f;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #1a5490;
    border: 2px solid #1a5490;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background: #1a5490;
    color: #ffffff;
}

.cta-link {
    color: #1a5490;
    font-weight: 600;
    border-bottom: 2px solid #1a5490;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.cta-link:hover {
    color: #0f3a6f;
}

/* Footer */
.footer-split {
    display: flex;
    flex-direction: column;
    padding: 3rem 5%;
    background: #2c3e50;
    color: #ffffff;
    gap: 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: #b0bec5;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #b0bec5;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
}

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

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

.btn-cookie-accept {
    background: #1a5490;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #0f3a6f;
}

.btn-cookie-reject {
    background: #546e7a;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #455a64;
}

/* Page Hero */
.page-hero-split {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.page-header-centered {
    padding: 4rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.page-header-centered h1 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.page-header-centered p {
    font-size: 1.1rem;
    color: #546e7a;
}

/* Story Section */
.story-split {
    display: flex;
    flex-direction: column;
}

.story-content {
    padding: 4rem 5%;
    background: #ffffff;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

/* Mission Section */
.mission-split {
    display: flex;
    flex-direction: column;
}

.mission-content {
    padding: 4rem 5%;
    background: #f9fafb;
}

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

.mission-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.mission-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

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

.value-card p {
    color: #546e7a;
    line-height: 1.7;
}

/* Team Section */
.team-split {
    display: flex;
    flex-direction: column;
}

.team-content {
    padding: 4rem 5%;
    background: #ffffff;
}

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

.team-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.team-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

/* CTA Centered */
.cta-centered {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #1a5490 0%, #0f3a6f 100%);
    color: #ffffff;
}

.cta-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-centered p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #b3d1f0;
}

.cta-centered .cta-primary {
    background: #ffffff;
    color: #1a5490;
}

.cta-centered .cta-primary:hover {
    background: #f0f0f0;
}

/* Service Detail */
.service-detail-split {
    display: flex;
    flex-direction: column;
}

.service-detail-content {
    padding: 4rem 5%;
    background: #ffffff;
}

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

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.featured-text {
    background: #1a5490;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

/* Comparison Section */
.comparison-section {
    padding: 5rem 5%;
    background: #f9fafb;
}

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

.comparison-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-card {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.comparison-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.comparison-card p {
    color: #1a5490;
    font-weight: 600;
}

/* Contact Split */
.contact-split {
    display: flex;
    flex-direction: column;
}

.contact-content {
    padding: 4rem 5%;
    background: #ffffff;
}

.contact-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #1a5490;
}

.contact-content h2:first-child {
    margin-top: 0;
}

.contact-detail {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-detail a {
    color: #1a5490;
    font-weight: 600;
    border-bottom: 2px solid #1a5490;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-left: 4px solid #1a5490;
    border-radius: 4px;
}

.contact-map {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 84, 144, 0.9);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
}

/* Directions Section */
.directions-section {
    padding: 5rem 5%;
    background: #f9fafb;
}

.directions-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5490;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction-card {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.direction-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.direction-card p {
    color: #546e7a;
}

/* Quick Links Section */
.quick-links-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.quick-links-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5490;
}

.quick-links-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-link-card {
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.quick-link-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a5490;
}

.quick-link-card p {
    color: #546e7a;
}

/* Thanks Page */
.thanks-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.thanks-details {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.next-steps {
    margin: 3rem auto;
    max-width: 800px;
}

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

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    padding-top: 0.8rem;
    color: #2c3e50;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Thanks Info Split */
.thanks-info-split {
    display: flex;
    flex-direction: column;
}

.info-content {
    padding: 4rem 5%;
    background: #ffffff;
}

.info-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.info-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.info-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.info-content ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.info-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.info-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

/* FAQ Quick */
.faq-quick {
    padding: 5rem 5%;
    background: #f9fafb;
}

.faq-quick h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a5490;
}

/* Legal Page */
.legal-page {
    padding: 3rem 5%;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a5490;
}

.legal-updated {
    color: #546e7a;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

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

.legal-container ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-container a {
    color: #1a5490;
    font-weight: 600;
    border-bottom: 1px solid #1a5490;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .cta-split,
    .story-split,
    .mission-split,
    .team-split,
    .service-detail-split,
    .contact-split,
    .thanks-info-split {
        flex-direction: row;
    }

    .hero-split.reverse,
    .intro-split.reverse,
    .trust-split.reverse,
    .cta-split.reverse,
    .story-split.reverse,
    .mission-split.reverse,
    .team-split.reverse,
    .service-detail-split.reverse,
    .contact-split.reverse,
    .thanks-info-split.reverse {
        flex-direction: row-reverse;
    }

    .hero-content,
    .intro-content,
    .trust-content,
    .cta-content,
    .story-content,
    .mission-content,
    .team-content,
    .service-detail-content,
    .contact-content,
    .info-content {
        flex: 1;
        padding: 5rem;
    }

    .hero-image,
    .intro-image,
    .trust-image,
    .cta-image,
    .story-image,
    .mission-image,
    .team-image,
    .service-detail-image,
    .contact-map,
    .info-image {
        flex: 1;
        height: auto;
        min-height: 500px;
    }

    .service-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .trust-stats,
    .footer-links {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-split {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .faq-grid,
    .values-grid,
    .directions-grid,
    .quick-links-grid,
    .comparison-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item,
    .value-card,
    .direction-card,
    .comparison-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .quick-link-card {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        flex: 1 1 calc(33.333% - 1rem);
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}
