/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F7B801;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --success-color: #28A745;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* Header and navigation */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.logo:hover {
    color: var(--primary-color);
}

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

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

/* Hero section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

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

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

.hero-visual {
    flex: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

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

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

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

/* Philosophy section */
.philosophy {
    background: var(--white);
}

.philosophy-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

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

.philosophy-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.philosophy-item p {
    color: var(--text-light);
}

/* Services highlight */
.services-highlight {
    background: var(--light-color);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

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

.link-arrow {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Stats section */
.stats {
    background: var(--dark-color);
    color: var(--white);
}

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

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

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

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

/* Process section */
.process {
    background: var(--white);
}

.process-steps {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

/* Testimonials */
.testimonials {
    background: var(--light-color);
}

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

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

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

/* Industries */
.industries {
    background: var(--white);
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.industry-tag {
    padding: 0.75rem 1.5rem;
    background: var(--light-color);
    border-radius: 30px;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.industry-tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Benefits */
.benefits {
    background: var(--white);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 1.5rem);
}

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

.benefit-item p {
    color: var(--text-light);
}

/* FAQ section */
.faq {
    background: var(--light-color);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA sections */
.cta-final,
.cta-secondary,
.cta-services,
.cta-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-final h2,
.cta-secondary h2,
.cta-services h2,
.cta-contact h2 {
    color: var(--white);
}

.cta-final p,
.cta-secondary p,
.cta-services p,
.cta-contact p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--light-color);
}

.cta-final .btn,
.cta-secondary .btn,
.cta-services .btn,
.cta-contact .btn {
    background: var(--white);
    color: var(--primary-color);
}

.cta-final .btn:hover,
.cta-secondary .btn:hover,
.cta-services .btn:hover,
.cta-contact .btn:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: var(--light-color);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: var(--light-color);
}

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

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

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    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 {
    flex: 1;
    margin: 0;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--dark-color);
}

.modal-close {
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.cookie-option p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

/* Page hero */
.page-hero {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    padding: 4rem 0;
    text-align: center;
}

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

/* About page */
.story {
    background: var(--white);
}

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

.content-text {
    flex: 1;
}

.content-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

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

.content-visual {
    flex: 1;
}

/* Values */
.values {
    background: var(--light-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
}

.value-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

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

/* Team */
.team {
    background: var(--white);
}

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

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

.member-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

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

.team-member p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Approach */
.approach {
    background: var(--light-color);
}

.approach-content {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.approach-item p {
    color: var(--text-light);
}

/* Milestones */
.milestones {
    background: var(--white);
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 120px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.timeline-content p {
    color: var(--text-light);
}

/* Commitment */
.commitment {
    background: var(--light-color);
}

.commitment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.commitment-item p {
    color: var(--text-light);
}

/* Services detailed */
.services-detailed {
    background: var(--white);
}

.service-detail {
    background: var(--light-color);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-detail-header img {
    width: 80px;
    height: 80px;
}

.service-detail-header h2 {
    text-align: left;
    margin: 0 0 0.5rem 0;
}

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

.service-detail-body {
    display: flex;
    gap: 3rem;
}

.service-description {
    flex: 2;
}

.service-description h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: var(--dark-color);
}

.service-description ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.service-description li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-pricing {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    text-align: center;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-note {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Service benefits */
.service-benefits {
    background: var(--light-color);
}

.benefits-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-point {
    flex: 1 1 calc(50% - 1rem);
}

.benefit-point h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-point p {
    color: var(--text-light);
}

/* Process overview */
.process-overview {
    background: var(--white);
}

.process-visual {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.process-phase {
    flex: 1;
    text-align: center;
}

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

.process-phase h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.process-phase p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Services FAQ */
.services-faq {
    background: var(--light-color);
}

/* Contact page */
.contact-info {
    background: var(--white);
}

.contact-grid {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item img {
    width: 50px;
    height: 50px;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
}

.contact-description {
    flex: 1;
}

.contact-description h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

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

/* Location info */
.location-info {
    background: var(--light-color);
}

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

.location-method {
    flex: 1;
    text-align: center;
}

.location-method img {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.location-method h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.location-method p {
    color: var(--text-light);
}

/* Contact info extended */
.contact-info-extended {
    background: var(--white);
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.info-block {
    flex: 1 1 calc(50% - 1rem);
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

/* Contact FAQ */
.contact-faq {
    background: var(--light-color);
}

/* Visit info */
.visit-info {
    background: var(--white);
}

.visit-details {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.visit-point {
    flex: 1;
}

.visit-point h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.visit-point p {
    color: var(--text-light);
}

/* Thank you page */
.thank-you-section {
    background: var(--light-color);
    padding: 6rem 0;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

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

.thank-you-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Next steps */
.next-steps {
    background: var(--white);
}

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

.next-step {
    flex: 1;
    text-align: center;
}

.next-step img {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.next-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.next-step p {
    color: var(--text-light);
}

/* Legal pages */
.legal-page {
    background: var(--white);
    padding: 3rem 0 5rem;
}

.legal-intro {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin: 1.5rem 0 1rem;
}

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

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

.legal-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

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

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

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

    .philosophy-grid,
    .process-steps,
    .testimonials-grid,
    .team-grid,
    .process-visual {
        flex-direction: column;
    }

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

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

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

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

    .benefits-grid,
    .values-grid,
    .commitment-grid,
    .benefits-comparison,
    .info-blocks {
        flex-direction: column;
    }

    .benefit-item,
    .value-card,
    .commitment-item,
    .benefit-point,
    .info-block {
        flex: 1 1 100%;
    }

    .content-split,
    .contact-grid,
    .location-grid,
    .visit-details,
    .next-steps-grid {
        flex-direction: column;
    }

    .service-detail-body {
        flex-direction: column;
    }

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

    .cookie-actions {
        justify-content: center;
    }

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

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
    }

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

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

    .thank-you-actions {
        flex-direction: column;
    }
}

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

    .stat-number {
        font-size: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-year {
        font-size: 1.5rem;
    }
}