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

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

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

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

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e3f70;
}

ul {
    list-style: none;
}

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

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 1rem 0;
}

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

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

.nav-menu a {
    color: #333;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5aa0;
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f70 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-small {
    padding: 3rem 0;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

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

/* Sections */
.section {
    padding: 3rem 0;
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1e3f70;
}

.bg-light {
    background: #f8f9fa;
}

.bg-dark {
    background: #1e3f70;
    color: #fff;
}

.bg-dark h2,
.bg-dark h3 {
    color: #fff;
}

.bg-accent {
    background: #e8f0f8;
}

/* Content Blocks */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1e3f70;
}

.content-block h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

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

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

/* Features Grid */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e3f70;
}

.feature-card p {
    color: #555;
}

/* Statistics */
.stats-wrapper h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

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

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

.stat-box {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.stat-box .stat-number {
    color: #2c5aa0;
}

.stat-box .stat-label {
    color: #555;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e3f70;
}

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

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

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5aa0;
}

/* Content Split */
.content-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-col h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3f70;
}

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

.content-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.content-list li {
    margin-bottom: 0.75rem;
    color: #555;
}

/* Highlight Box */
.highlight-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
}

.highlight-box h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e3f70;
}

.highlight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.highlight-item {
    flex: 1 1 250px;
}

.highlight-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.highlight-item p {
    color: #555;
    font-size: 0.9375rem;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1e3f70;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2c5aa0;
    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.25rem 1.25rem;
    color: #555;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3f70 100%);
    color: #fff;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.btn-primary {
    background: #2c5aa0;
    color: #fff;
}

.btn-primary:hover {
    background: #1e3f70;
    color: #fff;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
}

.btn-secondary:hover {
    background: #5a6268;
    color: #fff;
}

.btn-light {
    background: #fff;
    color: #2c5aa0;
}

.btn-light:hover {
    background: #f8f9fa;
    color: #1e3f70;
}

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1e3f70;
}

.team-role {
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    color: #555;
    line-height: 1.7;
}

/* Values List */
.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 1.5rem;
}

.values-list h4 {
    font-size: 1.125rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.values-list p {
    color: #555;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    padding: 1.5rem;
    border-left: 3px solid #fff;
    opacity: 0.95;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.timeline-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.timeline-item p {
    opacity: 0.9;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c5aa0;
    color: #fff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-card h3 {
    font-size: 1.375rem;
    color: #1e3f70;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5aa0;
}

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #555;
}

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

/* Premium Offer */
.premium-offer {
    max-width: 700px;
    margin: 0 auto;
}

.premium-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
}

.premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #d32f2f;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
}

.premium-card h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1e3f70;
}

.premium-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
}

.price-period {
    font-size: 1.125rem;
    color: #777;
}

.premium-description {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
}

.premium-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.premium-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.premium-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
    font-size: 1.25rem;
}

.premium-note {
    text-align: center;
    color: #2c5aa0;
    font-weight: 600;
    padding: 1rem;
    background: #e8f0f8;
    border-radius: 6px;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #1e3f70;
}

.benefit-item p {
    color: #555;
}

/* Comparison Table */
.comparison-table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: #1e3f70;
    color: #fff;
    font-weight: 700;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
    min-width: 0;
}

.comparison-cell:first-child {
    text-align: left;
    flex: 1.5;
}

/* Contact Grid */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1e3f70;
}

.contact-description {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.contact-item a {
    color: #2c5aa0;
    font-weight: 600;
}

.contact-note {
    font-size: 0.875rem;
    color: #777;
    margin-top: 0.5rem;
}

.contact-map {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    min-height: 300px;
}

.map-placeholder svg {
    width: 100%;
    height: 100%;
}

/* Directions Grid */
.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.direction-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e3f70;
}

.direction-card p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Info Grid */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1e3f70;
}

.info-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.info-note {
    font-size: 0.875rem;
    color: #777;
    margin-top: 1rem;
}

/* Thank You Page */
.thankyou-section {
    padding: 4rem 0;
}

.thankyou-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thankyou-message {
    font-size: 1.25rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e3f70;
}

.step-card p {
    color: #555;
    line-height: 1.7;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3f70;
}

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

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

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

.legal-content li {
    margin-bottom: 0.75rem;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #2c5aa0;
    text-decoration: underline;
}

.cookie-table h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.cookie-table ul {
    list-style: none;
    padding-left: 0;
}

.cookie-table li {
    padding: 0.75rem;
    background: #f8f9fa;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

/* Footer */
.footer {
    background: #1e3f70;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p {
    opacity: 0.9;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e3f70;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    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 {
    margin: 0;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #777;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #1e3f70;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

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

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

.cookie-option span {
    font-weight: 600;
    color: #1e3f70;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    color: #555;
    font-size: 0.875rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .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;
    }

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

    .hero-lead {
        font-size: 1.25rem;
    }

    .features-grid,
    .testimonials-grid,
    .team-grid,
    .services-grid,
    .benefits-grid,
    .directions-grid,
    .info-grid,
    .next-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-card,
    .testimonial-card,
    .team-card,
    .benefit-item,
    .direction-card,
    .info-card,
    .step-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .content-col {
        flex: 1;
    }

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

    .contact-info,
    .contact-map {
        flex: 1;
    }

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

    .stat-box {
        flex: 1;
    }

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

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

    .footer-col {
        flex: 1;
    }

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

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

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

    .section {
        padding: 4rem 0;
    }

    .features-grid {
        flex-wrap: nowrap;
    }

    .feature-card {
        flex: 1;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }

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

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

    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1;
    }

    .highlight-grid {
        justify-content: space-between;
    }

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

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

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

    .directions-grid,
    .info-grid {
        flex-wrap: nowrap;
    }

    .direction-card,
    .info-card {
        flex: 1;
    }

    .next-steps {
        flex-wrap: nowrap;
    }

    .step-card {
        flex: 1;
    }
}