/* 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: #2c3e50;
    background-color: #ffffff;
}

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

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

a:hover {
    color: #c0392b;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background-color: #ffffff;
    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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #e74c3c;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.nav-menu a {
    color: #2c3e50;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Page Hero */
.page-hero {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.btn-primary {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #c0392b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

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

.btn-secondary:hover {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Philosophy Grid */
.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.philosophy-item {
    text-align: center;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

/* Content Split */
.content-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.content-split.reverse {
    flex-direction: column;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.content-visual {
    flex: 1;
    max-width: 400px;
}

/* Stats Section */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

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

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

.process-step {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    opacity: 0.3;
    margin-bottom: 10px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

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

.testimonial-card {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Industries List */
.industries-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.industry-item {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #ecf0f1;
}

.industry-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.industry-item p {
    color: #555;
    line-height: 1.6;
}

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

.value-card {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.3rem;
    color: #e74c3c;
    margin-bottom: 12px;
}

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

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: left;
    transition: background-color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: #e74c3c;
    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-color: #f8f9fa;
}

.faq-answer p {
    padding: 20px;
    color: #555;
    line-height: 1.7;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

.team-member {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.team-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.team-role {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

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

/* Approach Content */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.approach-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

/* Quote Block */
.quote-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-block blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: #ffffff;
}

.quote-block cite {
    display: block;
    margin-top: 20px;
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.8;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e74c3c;
}

.timeline-item {
    position: relative;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e74c3c;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #e74c3c;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

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

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

.benefit-item {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

/* Services */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #e74c3c;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.service-header h2 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-includes li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
}

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

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
}

.comparison-table h2 {
    margin-bottom: 25px;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

thead {
    background-color: #2c3e50;
    color: #ffffff;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

th {
    font-weight: 600;
}

td {
    color: #555;
}

tbody tr:hover {
    background-color: #f8f9fa;
}

/* Contact */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

.info-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 5px;
}

.contact-tips {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-tips h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.contact-tips ul {
    list-style: disc;
    padding-left: 20px;
}

.contact-tips li {
    color: #555;
    margin-bottom: 8px;
}

/* Directions */
.directions-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.direction-item {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.direction-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

/* Company Info Block */
.company-info-block {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.company-info-block h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.info-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-columns p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.thank-you-content h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Next Steps */
.next-steps h2 {
    text-align: center;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.last-updated {
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-page h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.legal-page ul {
    list-style: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.cookie-table {
    overflow-x: auto;
    margin: 30px 0;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px 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: 20px;
    align-items: center;
}

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

.cookie-content a {
    color: #e74c3c;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

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

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

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

.cookie-modal-header h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.cookie-modal-close {
    font-size: 2rem;
    color: #7f8c8d;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.cookie-modal-close:hover {
    color: #2c3e50;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option-header {
    margin-bottom: 8px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

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

.cookie-option p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.cookie-modal-footer {
    display: flex;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid #ecf0f1;
    flex-wrap: wrap;
}

.cookie-modal-footer .btn {
    flex: 1;
    min-width: 150px;
}

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

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        flex-direction: row;
        gap: 30px;
    }

    .nav-menu a {
        padding: 0;
        border: none;
        font-size: 1rem;
    }

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

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

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

    .philosophy-item {
        flex: 1;
        min-width: 250px;
    }

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

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

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

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

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

    .process-step {
        flex: 1;
        min-width: 250px;
    }

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

    .testimonial-card {
        flex: 1;
        min-width: 300px;
    }

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

    .industry-item {
        flex: 1;
        min-width: 280px;
    }

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

    .value-card {
        flex: 1;
        min-width: 250px;
    }

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

    .team-member {
        flex: 1;
        min-width: 250px;
    }

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

    .approach-item {
        flex: 1;
        min-width: 280px;
    }

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

    .benefit-item {
        flex: 1;
        min-width: 280px;
    }

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

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

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

    .direction-item {
        flex: 1;
        min-width: 250px;
    }

    .info-columns {
        flex-direction: row;
        gap: 40px;
    }

    .info-columns > div {
        flex: 1;
    }

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

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

    .step-item {
        flex: 1;
    }

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

    .footer-col {
        flex: 1;
        min-width: 200px;
    }

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

    .cookie-content p {
        margin: 0;
    }

    .cookie-modal-footer {
        justify-content: flex-end;
    }

    .cookie-modal-footer .btn {
        flex: 0;
    }
}

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

    .section {
        padding: 80px 0;
    }

    .philosophy-grid,
    .stats-grid,
    .values-grid,
    .team-grid {
        flex-wrap: nowrap;
    }
}