/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

a:hover {
    color: #1a3d5c;
}

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

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

.nav {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.logo:hover {
    color: #1a3d5c;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: #2c5f8d;
    transition: all 0.3s ease;
}

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

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

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

.nav-menu {
    display: none;
    list-style: none;
    width: 100%;
    margin-top: 1rem;
    flex-direction: column;
    gap: 0.5rem;
}

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

.nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: #f0f4f8;
    color: #2c5f8d;
}

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

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

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

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Page Hero */
.page-hero {
    background-color: #f0f4f8;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.page-lead {
    font-size: 1.125rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.btn-primary:hover {
    background-color: #1a3d5c;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.section:nth-child(even) {
    background-color: #f8f9fa;
}

.section h2 {
    font-size: 1.875rem;
    color: #2c5f8d;
    margin-bottom: 2rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    color: #555;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Philosophy Section */
.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.philosophy-text p {
    margin-bottom: 1rem;
    color: #555;
}

.philosophy-icon {
    display: flex;
    justify-content: 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.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

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

/* Destinations */
.destinations-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.destination-item {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid #2c5f8d;
    border-radius: 4px;
}

.destination-item h3 {
    color: #2c5f8d;
    margin-bottom: 0.75rem;
}

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

/* Statistics */
.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 8px rgba(0, 0, 0, 0.08);
}

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

.stat-label {
    font-size: 1rem;
    color: #555;
}

/* 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.08);
}

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

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

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

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f8d;
    opacity: 0.3;
    flex-shrink: 0;
}

.process-step h3 {
    color: #2c5f8d;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #555;
}

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

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

.benefit-block h3 {
    color: #2c5f8d;
    margin-bottom: 1rem;
}

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

/* Knowledge Section */
.knowledge-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.knowledge-card h3 {
    color: #2c5f8d;
    margin-bottom: 1rem;
}

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

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

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

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

.faq-question:hover {
    color: #2c5f8d;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2c5f8d;
    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-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

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

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

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

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

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

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

.footer-column ul li a:hover {
    color: #fff;
}

.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 */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a3d5c;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

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

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

.modal-header h2 {
    color: #2c5f8d;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

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

.modal-body {
    padding: 1.5rem;
}

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

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

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

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

/* Services Page */
.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.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-header h3 {
    color: #2c5f8d;
    font-size: 1.25rem;
}

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

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

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

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

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

.benefit-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f8d;
}

.benefit-card h3 {
    color: #2c5f8d;
    margin-bottom: 0.75rem;
}

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

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

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

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

.comparison-header {
    background-color: #2c5f8d;
    color: #fff;
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    min-width: 120px;
    padding: 1rem;
}

.comparison-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #777;
    text-align: center;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-content h3 {
    color: #2c5f8d;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #555;
}

/* Individual Section */
.individual-content {
    max-width: 800px;
    margin: 0 auto;
}

.individual-content > p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.individual-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.individual-feature h3 {
    color: #2c5f8d;
    margin-bottom: 0.75rem;
}

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

.individual-pricing {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #2c5f8d;
    text-align: center;
    color: #555;
    font-weight: 500;
}

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

.contact-block {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-block h2 {
    color: #2c5f8d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

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

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

.office-content p,
.collaboration-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.direction-item h3 {
    color: #2c5f8d;
    margin-bottom: 1rem;
}

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

.company-details p {
    color: #555;
    margin-bottom: 0.75rem;
}

/* About Page */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

.value-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: #2c5f8d;
    margin-bottom: 1rem;
}

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

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

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

.team-member h3 {
    color: #2c5f8d;
    margin-bottom: 0.25rem;
}

.member-role {
    color: #777;
    font-style: italic;
    margin-bottom: 1rem;
}

.team-member p {
    color: #555;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f8d;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: #2c5f8d;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #555;
}

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

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

.approach-item h3 {
    color: #2c5f8d;
    margin-bottom: 1rem;
}

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

.commitment-text {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-text p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.trust-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

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

.thank-you-content h1 {
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.thank-you-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.next-step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.next-step-card h3 {
    color: #2c5f8d;
    margin-bottom: 1rem;
}

.next-step-card p {
    color: #555;
    margin-bottom: 1rem;
}

.next-step-card a {
    color: #2c5f8d;
    font-weight: 600;
}

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

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

.legal-text h3 {
    color: #2c5f8d;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

.legal-text ul li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.cookies-table {
    width: 100%;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.cookies-table tr {
    display: flex;
    padding: 0.5rem 0;
}

.cookies-table td {
    color: #555;
}

.cookies-table td:first-child {
    min-width: 100px;
}

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

    .nav-menu {
        display: flex;
        flex-direction: row;
        width: auto;
        margin-top: 0;
    }

    .nav-menu li a {
        padding: 0.5rem 1rem;
    }

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

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

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

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

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

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

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

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

    .benefits-content,
    .knowledge-items {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

    .footer-column {
        flex: 1 1 200px;
    }

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

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

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

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

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

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

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

    .contact-block {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

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

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

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

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

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

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

    .next-step-card {
        flex: 1;
    }

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

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

    .philosophy-text {
        flex: 1;
    }

    .individual-features {
        flex-direction: row;
    }

    .individual-feature {
        flex: 1;
    }
}

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

    .section h2 {
        font-size: 2.25rem;
    }

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

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

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

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

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