/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c5f7c;
    transition: all 0.3s;
}

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

.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: 80%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transition: right 0.3s;
    overflow-y: auto;
}

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

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    display: block;
    font-size: 1.1rem;
    color: #333;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

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

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, #2c5f7c 0%, #4a8fb5 100%);
    color: #ffffff;
    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;
}

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

.page-hero {
    background: linear-gradient(135deg, #2c5f7c 0%, #4a8fb5 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

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

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

.btn-primary:hover {
    background: #234a5f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2c5f7c;
    border-color: #2c5f7c;
}

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

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

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

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

.section-header h2 {
    font-size: 1.75rem;
    color: #2c5f7c;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    color: #666;
}

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

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

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

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

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

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

.content-column {
    flex: 1;
}

.content-column h2 {
    color: #2c5f7c;
    margin-bottom: 1rem;
}

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

/* Highlight Box */
.highlight-box {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f7c;
}

.highlight-box h3 {
    color: #2c5f7c;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f7c;
    font-weight: bold;
}

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

.service-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

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

.service-content h3 {
    color: #2c5f7c;
    margin-bottom: 0.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #e8f4f8;
    border-radius: 10px;
}

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

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

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

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555;
}

.testimonial-author strong {
    display: block;
    color: #2c5f7c;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

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

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

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

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

.process-step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #2c5f7c;
    margin-bottom: 0.75rem;
}

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

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

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

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

.faq-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #2c5f7c;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #666;
}

/* CTA Sections */
.cta-final {
    background: linear-gradient(135deg, #2c5f7c 0%, #4a8fb5 100%);
    color: #ffffff;
}

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

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

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

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

.cta-simple {
    background: #e8f4f8;
}

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

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

.cta-box p {
    margin-bottom: 1.5rem;
    color: #666;
}

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

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

.footer-column h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

.footer-column ul li a {
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.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: 0;
    left: 0;
    right: 0;
    background: #1a3a4a;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
}

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

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

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    position: relative;
}

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

.modal-content h2 {
    color: #2c5f7c;
    margin-bottom: 1.5rem;
}

.cookie-options {
    margin-bottom: 2rem;
}

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

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

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

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

.cookie-option p {
    color: #666;
    font-size: 0.9rem;
}

/* Services Page */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background: #e8f4f8;
    border-radius: 8px;
}

.service-detailed {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.service-header-detailed h2 {
    color: #2c5f7c;
    flex: 1;
    min-width: 200px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7c;
    flex-shrink: 0;
}

.service-description {
    margin-bottom: 1.5rem;
    color: #666;
}

.service-features h3 {
    color: #2c5f7c;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c5f7c;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

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

.benefit-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

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

.benefit-card h3 {
    color: #2c5f7c;
    margin-bottom: 0.5rem;
}

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

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

.comparison-header {
    background: #2c5f7c;
    color: #ffffff;
    font-weight: 600;
}

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

.comparison-row .comparison-cell:first-child {
    text-align: left;
    font-weight: 600;
    color: #2c5f7c;
}

.comparison-price {
    background: #e8f4f8;
    font-weight: 700;
}

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

.contact-info h2 {
    color: #2c5f7c;
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
}

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

.contact-item h3 {
    color: #2c5f7c;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2c5f7c;
    text-decoration: underline;
}

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

.contact-box {
    padding: 2rem;
    background: #e8f4f8;
    border-radius: 10px;
}

.contact-box h3 {
    color: #2c5f7c;
    margin-bottom: 1rem;
}

.contact-box p {
    margin-bottom: 1rem;
}

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

.direction-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.direction-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.direction-card h3 {
    color: #2c5f7c;
    margin-bottom: 1rem;
}

/* Company Info */
.company-details {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.company-row {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.company-label {
    font-weight: 600;
    color: #2c5f7c;
    margin-bottom: 0.25rem;
}

.company-value {
    color: #666;
}

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

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

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

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

.thank-you-message {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.thank-you-next {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #e8f4f8;
    border-radius: 10px;
}

.thank-you-next h2 {
    color: #2c5f7c;
    margin-bottom: 2rem;
}

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

.next-step {
    display: flex;
    gap: 1.5rem;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #2c5f7c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thank-you-info {
    margin-bottom: 2rem;
    text-align: left;
}

.thank-you-info h3 {
    color: #2c5f7c;
    margin-bottom: 1rem;
}

.thank-you-info ul {
    list-style: disc;
    padding-left: 2rem;
}

.thank-you-info li {
    margin-bottom: 0.75rem;
}

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

.reminder-box {
    padding: 2rem;
    background: #e8f4f8;
    border-radius: 10px;
    text-align: center;
}

.reminder-box h3 {
    color: #2c5f7c;
    margin-bottom: 1rem;
}

.email-highlight {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.email-highlight a {
    color: #2c5f7c;
    font-weight: 600;
    text-decoration: underline;
}

/* About Page */
.story,
.philosophy {
    background: #ffffff;
}

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

.value-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    color: #2c5f7c;
    margin-bottom: 1rem;
}

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

.team-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.team-card h3 {
    color: #2c5f7c;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #2c5f7c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

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

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

.industry-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.industry-card h3 {
    color: #2c5f7c;
    margin-bottom: 1rem;
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
    background: #e8f4f8;
    border-radius: 10px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f7c;
    margin-bottom: 0.5rem;
}

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

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

.legal-text h2 {
    color: #2c5f7c;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    color: #2c5f7c;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

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

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

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

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

    .nav-menu li {
        margin-bottom: 0;
    }

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

    .hero-actions,
    .cta-buttons,
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .features-grid,
    .stats-grid,
    .testimonials-grid,
    .knowledge-grid,
    .benefits-grid,
    .values-grid,
    .team-grid,
    .industries-grid,
    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-card,
    .stat-item,
    .testimonial-card,
    .knowledge-card,
    .benefit-card,
    .value-card,
    .team-card,
    .industry-card,
    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .footer-column {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

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

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

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

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

    .direction-card {
        flex: 1;
    }

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

    .company-label {
        margin-bottom: 0;
    }
}

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

    .section {
        padding: 4rem 0;
    }

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

    .feature-card,
    .value-card,
    .team-card,
    .industry-card {
        flex: 1 1 calc(33.333% - 1.34rem);
    }

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

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}