/* Reset and Base Styles */
* {
    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;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

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

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

a:hover {
    color: #1a3f52;
}

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

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px 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;
    position: relative;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7a;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #2c5f7a;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #2c5f7a;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 80px 0 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

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

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 1rem 2rem;
    color: #333;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #e8f4f8;
    color: #2c5f7a;
}

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

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

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero {
    background: #2c5f7a;
    color: #fff;
    padding: 3rem 0 2rem;
    text-align: center;
}

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

.lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

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

.btn-primary:hover {
    background: #1a3f52;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 122, 0.3);
}

.btn-secondary {
    background: #fff;
    color: #2c5f7a;
    border: 2px solid #2c5f7a;
}

.btn-secondary:hover {
    background: #2c5f7a;
    color: #fff;
}

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

.section-light {
    background: #f8f9fa;
}

.section-dark {
    background: #2c5f7a;
    color: #fff;
}

.section-highlight {
    background: #e8f4f8;
}

.section-cta {
    background: linear-gradient(135deg, #2c5f7a 0%, #1a3f52 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: inherit;
}

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

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5f7a;
}

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

.svg-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-wrapper svg {
    max-width: 300px;
    width: 100%;
    height: auto;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c5f7a;
}

/* Regions List */
.regions-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.region-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #fff;
}

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

.region-item p {
    color: rgba(255, 255, 255, 0.9);
}

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

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5f7a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

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

.step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2c5f7a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    font-size: 1.3rem;
    color: #2c5f7a;
    margin-bottom: 0.5rem;
}

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

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

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

/* Philosophy */
.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c5f7a;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    line-height: 1.7;
}

/* CTA */
.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

/* About Page */
.content-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column-main {
    flex: 2;
}

.column-main h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f7a;
}

.column-main p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.column-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f7a;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    background: #fff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c5f7a;
}

/* Team Grid */
.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

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

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

.member-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.member-icon svg {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c5f7a;
}

.member-role {
    font-weight: 600;
    color: #666;
    margin-bottom: 0.75rem;
}

/* Achievements */
.achievements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.achievement-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
}

.achievement-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Partners */
.partners-content {
    max-width: 800px;
    margin: 0 auto;
}

.partners-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.partners-list {
    list-style: none;
    padding-left: 0;
}

.partners-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.partners-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5f7a;
    font-weight: 700;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c5f7a;
}

/* Services Page */
.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
}

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

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

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

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

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2c5f7a;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f7a;
}

.service-price {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #e8f4f8;
    border-radius: 8px;
    text-align: center;
}

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

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

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

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

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

.benefit-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c5f7a;
}

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

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

.timeline-marker {
    width: 50px;
    height: 50px;
    background: #2c5f7a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c5f7a;
}

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

.contact-main {
    flex: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c5f7a;
}

.contact-item p {
    line-height: 1.8;
}

.contact-note {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c5f7a;
}

.contact-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c5f7a;
}

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

/* Company Info */
.company-info {
    max-width: 800px;
    margin: 0 auto;
}

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

.company-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f7a;
}

.company-details p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.directions-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c5f7a;
}

.directions-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

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

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

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f7a;
}

.thank-you-text {
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

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

.step-item .step-number {
    width: 50px;
    height: 50px;
    background: #2c5f7a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c5f7a;
}

.useful-links {
    max-width: 900px;
    margin: 0 auto;
}

.useful-links h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.link-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c5f7a;
}

.link-arrow {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #2c5f7a;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Legal Pages */
.legal-content {
    background: #fff;
}

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

.legal-text h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f7a;
}

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

.legal-text h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #e8f4f8;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
}

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    z-index: 10000;
    transition: bottom 0.4s ease;
}

.cookie-banner.active {
    bottom: 0;
}

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

.cookie-content p {
    margin: 0;
    line-height: 1.6;
}

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

/* Cookie Modal */
.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: 10001;
    padding: 20px;
}

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

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

.cookie-modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c5f7a;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cookie-option:last-of-type {
    border-bottom: none;
}

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

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

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

.cookie-option p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        border-bottom: none;
        border-radius: 5px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

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

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

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

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

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

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

    .step {
        flex-direction: row;
    }

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

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

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

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

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

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

    .achievements {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

    .benefit-item {
        flex-direction: row;
    }

    .timeline-step {
        flex-direction: row;
    }

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

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

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

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

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

    .link-card {
        flex: 1;
    }

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

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

    .footer-section {
        flex: 1;
    }

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

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

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

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

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

    .feature-card {
        flex: 1;
    }

    .regions-list {
        flex-wrap: nowrap;
    }

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

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

    .stat-item {
        flex: 1;
    }

    .testimonials {
        flex-wrap: nowrap;
    }

    .testimonial {
        flex: 1;
    }

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

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

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

    .team-member {
        flex: 1;
    }

    .achievements {
        flex-wrap: nowrap;
    }

    .achievement-item {
        flex: 1 1 calc(25% - 1.125rem);
    }

    .trust-indicators {
        flex-wrap: nowrap;
    }

    .trust-item {
        flex: 1;
    }

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

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

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

    .step-item {
        flex: 1;
    }
}