:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --accent-color: #0891b2;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

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

ul {
    list-style-position: inside;
}

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

.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: none;
}

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

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

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

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

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

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -5px);
}

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-visual {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

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

section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-intro h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    text-align: center;
}

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

.company-overview {
    background: var(--bg-light);
}

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

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.overview-card img {
    margin: 0 auto 1rem;
}

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

.philosophy-section {
    background: white;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.philosophy-text {
    flex: 1;
}

.philosophy-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.featured-services {
    background: var(--bg-light);
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-feature {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.service-icon {
    margin-bottom: 1rem;
}

.service-feature h3 {
    margin-bottom: 1rem;
}

.process-section {
    background: white;
}

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

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.process-step h3 {
    margin-top: 0.5rem;
}

.testimonials-section {
    background: var(--bg-light);
}

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

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

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

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text-dark);
}

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

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

.industries-section {
    background: white;
}

.industries-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.industry-item {
    flex: 0 0 calc(50% - 0.75rem);
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.industry-item img {
    margin: 0 auto 1rem;
}

.industry-item h3 {
    font-size: 1rem;
    margin: 0;
}

.benefits-section {
    background: var(--bg-light);
}

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

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-block {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.insights-section {
    background: white;
}

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

.insights-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-article {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.faq-section {
    background: var(--bg-light);
}

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    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;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

.cta-content .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: center;
}

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

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
}

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

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option p {
    margin: 0.5rem 0 0 1.75rem;
    font-size: 0.875rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.story-section {
    padding: 4rem 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-vision {
    background: var(--bg-light);
}

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

.mv-block {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.values-section {
    background: white;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    margin-bottom: 1rem;
}

.value-icon img {
    margin: 0 auto;
}

.team-section {
    background: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.approach-section {
    background: white;
}

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

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-block {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.achievements-section {
    background: var(--bg-light);
}

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

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

.achievement-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

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

.commitment-section {
    background: white;
}

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

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

.commitment-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.services-list {
    background: white;
}

.service-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-title h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.service-benefits {
    background: var(--bg-light);
}

.service-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.delivery-options {
    background: white;
}

.delivery-options h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.option-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.option-card ul {
    list-style: none;
    margin-top: 1rem;
}

.option-card ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

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

.service-process {
    background: var(--bg-light);
}

.service-process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.step-marker {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.contact-info {
    background: var(--bg-light);
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-icon img {
    margin: 0 auto;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.about-location {
    background: white;
}

.about-location h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.directions-section {
    background: var(--bg-light);
}

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

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

.direction-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.company-info-section {
    background: white;
}

.company-info-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.company-details {
    max-width: 800px;
    margin: 0 auto;
}

.enquiry-info {
    background: var(--bg-light);
}

.enquiry-info h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.info-item h3 {
    margin-bottom: 0.5rem;
}

.info-note {
    margin-top: 2rem;
    padding: 1rem;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.additional-resources {
    background: white;
}

.additional-resources h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.additional-resources > p {
    text-align: center;
    margin-bottom: 2rem;
}

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

.resource-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.thank-you-section {
    padding: 6rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon img {
    margin: 0 auto;
}

.thank-you-message {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

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

.next-steps {
    background: var(--bg-light);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.step-card .step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.legal-hero h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.legal-content {
    padding: 4rem 0;
}

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

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

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-text li {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .main-nav {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero {
        padding: 6rem 0;
    }

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

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .overview-grid {
        flex-direction: row;
        gap: 2rem;
    }

    .overview-card {
        flex: 1;
    }

    .philosophy-content {
        flex-direction: row;
        gap: 3rem;
    }

    .philosophy-stats {
        flex-direction: row;
        min-width: 300px;
    }

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

    .stat-item {
        flex: 1;
        min-width: 150px;
    }

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

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

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

    .process-step {
        flex: 0 0 calc(50% - 1rem);
    }

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

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

    .industry-item {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .benefits-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .insights-content {
        flex-direction: row;
    }

    .insight-article {
        flex: 1;
    }

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

    .footer-column {
        flex: 1;
    }

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

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

    .cookie-actions {
        flex-shrink: 0;
    }

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

    .mv-block {
        flex: 1;
    }

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

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

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

    .team-member {
        flex: 0 0 calc(50% - 1rem);
    }

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

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

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

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

    .service-header {
        flex-direction: row;
        align-items: center;
    }

    .service-icon {
        flex-shrink: 0;
    }

    .service-title {
        flex: 1;
    }

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

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

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

    .option-card {
        flex: 1;
    }

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

    .contact-card {
        flex: 1;
    }

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

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

    .info-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .resource-card {
        flex: 1;
    }

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

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

@media (min-width: 1024px) {
    .service-feature {
        flex: 0 0 calc(50% - 1rem);
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - 1.333rem);
    }

    .value-card {
        flex: 0 0 calc(33.333% - 1.333rem);
    }

    .team-member {
        flex: 0 0 calc(33.333% - 1.333rem);
    }

    .benefit-item {
        flex: 0 0 calc(33.333% - 1.333rem);
    }

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