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

:root {
    --primary-color: #1a4d7c;
    --secondary-color: #2980b9;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

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

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(--secondary-color);
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

/* Container Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--success-color);
    color: white;
}

.btn-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

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

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

/* Navigation */
.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: none;
    gap: 30px;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Split Section */
.hero-split {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.split-left h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.split-right img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

/* Trust Section */
.trust-section {
    padding: 50px 0;
    background: var(--bg-white);
}

.trust-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Us Section */
.why-us-split {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.benefits-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
}

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

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

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

/* Services Section */
.services-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: white;
}

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

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

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

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

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

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

/* Contact Form Section */
.contact-form-split {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    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: 14px 32px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

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

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

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

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

/* Numbers Section */
.numbers-split {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.numbers-split .split-left,
.numbers-split .split-right {
    color: white;
}

.numbers-split h2 {
    color: white;
    margin-bottom: 2rem;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

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

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Expertise Areas */
.expertise-areas {
    padding: 80px 0;
    background: var(--bg-white);
}

.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 2rem;
}

.sector-item {
    background: var(--bg-light);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 500;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.sector-item:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-final h2,
.cta-final p {
    color: white;
}

.cta-final h2 {
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

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

.footer-column p,
.footer-column a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-btn {
    background: var(--accent-color);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    text-align: center;
    color: white;
}

.page-header h1,
.page-header p {
    color: white;
}

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

.page-header p {
    font-size: 1.15rem;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 60px;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-detail-card.reverse .service-detail-content {
    flex-direction: column;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-left {
    flex: 1;
    padding: 40px;
}

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

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

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-large svg {
    color: white;
}

.price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 1rem 0;
}

.service-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 1.5rem 0;
}

.detailed-list {
    margin: 1.5rem 0 2rem;
}

.detailed-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-dark);
}

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

.services-cta {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

/* Contact Page */
.contact-info-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon svg {
    color: white;
}

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

.contact-card a {
    color: var(--text-dark);
}

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

.map-placeholder {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-reasons {
    padding: 60px 0;
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 2rem;
}

.reason-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 2rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

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

.faq-item p {
    color: var(--text-dark);
    margin: 0;
}

/* About Page */
.about-intro-split {
    padding: 60px 0;
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 2rem;
}

.value-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    color: white;
}

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

.team-split {
    padding: 80px 0;
    background: var(--bg-white);
}

.team-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 2rem;
}

.team-stat {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.team-stat strong {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-stat span {
    color: var(--text-light);
}

.expertise-timeline {
    padding: 60px 0;
    background: var(--bg-light);
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 20px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 3px solid var(--primary-color);
    position: relative;
}

.timeline-item:before {
    content: '';
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: -9px;
    top: 0;
}

.timeline-year {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.certifications {
    padding: 60px 0;
}

.certif-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 2rem;
}

.certif-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
}

.certif-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.approach-split {
    padding: 80px 0;
    background: var(--bg-light);
}

.approach-steps {
    margin-top: 2rem;
}

.approach-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

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

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

.step-content p {
    margin: 0;
    color: var(--text-light);
}

.cta-about {
    padding: 60px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-about h2,
.cta-about p {
    color: white;
}

.cta-about p {
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 0;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success-color), #229954);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon svg {
    color: white;
}

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

.thanks-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin: 2rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

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

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 2rem;
}

.step-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.step-card .step-number {
    margin: 0 auto 1.5rem;
}

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

.step-card p {
    margin: 0;
    color: var(--text-light);
}

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

.thanks-cta p {
    margin-bottom: 2rem;
}

.thanks-reassurance {
    padding: 60px 0;
    background: var(--bg-light);
}

.reassurance-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reassurance-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.reassurance-item svg {
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

.reassurance-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.reassurance-item p {
    margin: 0;
    color: var(--text-light);
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

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

.legal-content {
    margin-top: 2rem;
}

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

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.legal-content h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }

    .nav-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .split-content {
        flex-direction: row;
        align-items: center;
    }

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

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

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

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

    .testimonial-card {
        flex: 1;
    }

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

    .stat-item {
        flex: 1 1 calc(50% - 15px);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 calc(50% - 15px);
    }

    .sticky-cta {
        display: block;
    }

    .service-detail-content {
        flex-direction: row;
    }

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

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

    .contact-card {
        flex: 1;
    }

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

    .reason-item {
        flex: 1 1 calc(50% - 12.5px);
    }

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

    .value-card {
        flex: 1 1 calc(50% - 12.5px);
    }

    .team-stats {
        flex-direction: row;
    }

    .team-stat {
        flex: 1;
    }

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

    .certif-item {
        flex: 1 1 calc(50% - 12.5px);
    }

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

    .step-card {
        flex: 1;
    }

    .reassurance-grid {
        flex-direction: row;
    }

    .reassurance-item {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .stat-item {
        flex: 1 1 calc(25% - 22.5px);
    }

    .footer-column {
        flex: 1 1 calc(25% - 22.5px);
    }
}
