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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --text-dark: #1e293b;
    --text-light: #475569;
    --border-color: #e2e8f0;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --success-color: #10b981;
    --accent-color: #f59e0b;
}

html {
    scroll-behavior: smooth;
}

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

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

.header {
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
}

.nav-menu li {
    padding: 0.5rem 20px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

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

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

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

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

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-visual img {
    max-width: 400px;
}

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

.page-hero h1 {
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.125rem;
    opacity: 0.9;
}

section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.philosophy-section {
    background: white;
}

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

.philosophy-text h2 {
    margin-bottom: 1.5rem;
}

.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 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.services-highlight h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.service-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

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

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

.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;
    align-items: center;
    text-align: center;
    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;
    margin-bottom: 1rem;
}

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

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

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.testimonial-author strong {
    color: var(--text-dark);
}

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

.industries-served {
    background: white;
}

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

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

.industry-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

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

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

.knowledge-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.faq-section {
    background: white;
}

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

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

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

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.25rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    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);
    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;
    background: var(--bg-light);
}

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

.faq-answer p {
    padding: 1.25rem;
    margin: 0;
}

.trust-indicators {
    background: white;
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.story-section {
    background: white;
}

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

.story-content h2 {
    margin-bottom: 1.5rem;
}

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

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

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

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.value-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

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

.team-section {
    background: white;
}

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

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

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

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

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

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

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

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

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

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

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

.approach-section {
    background: white;
}

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

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

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

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

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

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

.credentials-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.credential-item img {
    width: 60px;
    height: 60px;
}

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

.community-section {
    background: white;
}

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

.community-section > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

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

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

.services-intro {
    background: white;
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.0625rem;
    color: var(--text-light);
}

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

.service-detail {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.service-detail-header h2 {
    margin-bottom: 0.5rem;
}

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

.service-detail-content p {
    margin-bottom: 1rem;
}

.service-benefits {
    background: white;
}

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

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

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

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

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

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

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

.process-detail-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.process-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-content h3 {
    margin-bottom: 0.5rem;
}

.service-faq {
    background: white;
}

.contact-info {
    background: white;
}

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

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

.contact-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

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

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.about-location,
.directions,
.office-info,
.company-description,
.contact-faq,
.next-steps {
    background: var(--bg-light);
}

.about-location:nth-child(odd),
.directions:nth-child(odd),
.office-info:nth-child(odd),
.company-description:nth-child(odd),
.contact-faq:nth-child(odd),
.next-steps:nth-child(odd) {
    background: white;
}

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

.location-content p {
    margin-bottom: 1.5rem;
}

.directions h2,
.office-info h2,
.company-description h2,
.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.direction-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
}

.directions:nth-child(even) .direction-item {
    background: var(--bg-light);
}

.direction-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.office-info p,
.next-steps p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

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

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

.company-description:nth-child(even) .highlight-item {
    background: white;
}

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

.thank-you-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--bg-light);
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thank-you-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.thank-you-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.what-happens-next {
    background: white;
}

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

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

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

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

.legal-content {
    background: white;
}

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

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

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

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

.legal-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-text table tr {
    border-bottom: 1px solid var(--border-color);
}

.legal-text table td {
    padding: 1rem;
}

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

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

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

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

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

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

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

.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 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

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

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

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

.cookie-modal-content h2 {
    margin-bottom: 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;
    flex-shrink: 0;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

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

    h2 {
        font-size: 2.25rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu a {
        padding: 0;
    }

    .hero .container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

    .intro-features,
    .services-grid,
    .testimonial-grid,
    .knowledge-grid,
    .values-grid,
    .team-grid,
    .approach-grid,
    .benefits-grid,
    .process-detail-grid,
    .contact-grid,
    .directions-grid,
    .community-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item,
    .service-card,
    .testimonial-card,
    .knowledge-card,
    .value-card,
    .team-member,
    .approach-item,
    .benefit-item,
    .process-detail-item,
    .contact-card,
    .direction-item,
    .community-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .philosophy-text {
        flex: 1;
    }

    .philosophy-stats {
        flex: 1;
    }

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

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

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

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

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

    .service-detail-header img {
        margin-right: 1rem;
    }

    .company-highlights {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .thank-you-links {
        flex-direction: row;
        justify-content: center;
    }

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

    .next-step {
        flex: 1;
    }

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

    .credential-item {
        flex: 1 1 calc(50% - 1rem);
        flex-direction: row;
        text-align: left;
    }

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

    .cookie-content p {
        flex: 1;
    }

    .cookie-buttons {
        flex-direction: row;
        width: auto;
    }

    .cookie-modal-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .feature-item,
    .service-card,
    .testimonial-card,
    .knowledge-card,
    .value-card,
    .benefit-item,
    .community-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .team-member,
    .approach-item,
    .process-detail-item,
    .contact-card,
    .direction-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .process-step {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .trust-item {
        flex: 1 1 calc(25% - 1.5rem);
    }
}
