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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
}

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

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

a:hover {
    color: #1e40af;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.btn-accept {
    background-color: #10b981;
    color: #fff;
}

.btn-accept:hover {
    background-color: #059669;
}

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

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

/* Navigation */
.nav-minimal {
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 12px;
    color: #6b7280;
    padding: 4px 12px;
    background-color: #f3f4f6;
    border-radius: 4px;
}

/* Hero Overlay Section */
.hero-overlay {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.hero-overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 40px 24px;
}

.hero-overlay-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-overlay-content p {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

/* Story Narrow Section */
.story-narrow {
    padding: 80px 24px;
    background-color: #fff;
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #111827;
}

.story-container h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 48px 0 20px;
    color: #1f2937;
}

.story-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #374151;
}

.inline-image {
    margin: 48px 0;
    background-color: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

.citation {
    color: #2563eb;
    font-weight: 600;
    font-size: 16px;
}

.citation:hover {
    text-decoration: underline;
}

/* Insight Block */
.insight-block {
    padding: 80px 24px;
    background-color: #f9fafb;
}

.insight-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.insight-text {
    flex: 1;
    min-width: 320px;
}

.insight-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.insight-visual {
    flex: 1;
    min-width: 320px;
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

/* Trust Section */
.trust-section {
    padding: 80px 24px;
    background-color: #fff;
}

.trust-container {
    max-width: 900px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
    color: #111827;
}

.trust-container > p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 48px;
    text-align: center;
}

.testimonials-inline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.testimonial {
    background-color: #f9fafb;
    padding: 32px;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial .author {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 80px 24px;
    background-color: #1f2937;
    color: #fff;
}

.benefits-grid h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.benefit-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #374151;
    border-radius: 12px;
    overflow: hidden;
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    padding: 24px 24px 12px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 24px 24px;
    color: #d1d5db;
}

/* CTA Sticky Trigger */
.cta-sticky-trigger {
    padding: 60px 24px;
    background-color: #eff6ff;
}

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

.cta-content-center h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.cta-content-center p {
    font-size: 18px;
    color: #4b5563;
}

/* Services Pricing */
.services-pricing {
    padding: 80px 24px;
    background-color: #fff;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #111827;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    background-color: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-header h3 {
    font-size: 26px;
    font-weight: 600;
    color: #111827;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #2563eb;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.btn-select:hover {
    background-color: #1e40af;
}

/* Form Section */
.form-section {
    padding: 80px 24px;
    background-color: #f3f4f6;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #111827;
}

.form-container > p {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    width: 100%;
    background-color: #10b981;
    color: #fff;
    padding: 16px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #059669;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 24px;
    background-color: #fef3c7;
    border-top: 3px solid #f59e0b;
    border-bottom: 3px solid #f59e0b;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #78350f;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #9ca3af;
    font-size: 14px;
}

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #374151;
}

.footer-references h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.footer-references ol {
    padding-left: 24px;
}

.footer-references ol li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #9ca3af;
}

.footer-references ol li a {
    color: #60a5fa;
}

.footer-references ol li a:hover {
    color: #93c5fd;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #6b7280;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 24px;
    background-color: #fff;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.thanks-message {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
}

.selected-service-info {
    background-color: #eff6ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 16px;
}

.next-steps {
    text-align: left;
    margin: 48px auto;
    max-width: 500px;
}

.next-steps h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4b5563;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

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

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

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

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

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.about-story {
    padding: 80px 24px;
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 320px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 320px;
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.values-section {
    padding: 80px 24px;
    background-color: #f9fafb;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #111827;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

.expertise-section {
    padding: 80px 24px;
    background-color: #fff;
}

.expertise-container {
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-container h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #111827;
}

.expertise-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.expertise-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

.mission-section {
    padding: 80px 24px;
    background-color: #1f2937;
    color: #fff;
}

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

.mission-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Services Page */
.services-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 80px 24px;
    text-align: center;
    color: #fff;
}

.services-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.services-main {
    padding: 80px 24px;
    background-color: #f9fafb;
}

.services-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detail {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
    background-color: #1f2937;
    color: #fff;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.service-detail-header h2 {
    font-size: 28px;
    font-weight: 600;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #60a5fa;
}

.service-detail-content {
    padding: 32px;
}

.service-detail-content img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-bottom: 24px;
    background-color: #e5e7eb;
}

.service-description h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111827;
}

.service-description ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-description ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 10px;
}

.service-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 24px;
}

.btn-select-service {
    background-color: #2563eb;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.btn-select-service:hover {
    background-color: #1e40af;
}

.services-cta {
    padding: 60px 24px;
    background-color: #eff6ff;
}

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

.services-cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.services-cta-content p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 32px;
}

.btn-contact {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.btn-contact:hover {
    background-color: #1e40af;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    padding: 80px 24px;
    text-align: center;
    color: #fff;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-hero-content p {
    font-size: 20px;
    opacity: 0.95;
}

.contact-main {
    padding: 80px 24px;
    background-color: #fff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #111827;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.contact-note {
    background-color: #fef3c7;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin-top: 32px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.6;
    color: #78350f;
}

.contact-map {
    flex: 1;
    min-width: 320px;
}

.map-placeholder {
    position: relative;
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 16px;
    text-align: center;
}

.contact-faq {
    padding: 80px 24px;
    background-color: #f9fafb;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #111827;
}

.faq-item {
    background-color: #fff;
    padding: 28px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

.contact-cta {
    padding: 60px 24px;
    background-color: #1f2937;
    text-align: center;
    color: #fff;
}

.contact-cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-cta-content p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background-color: #10b981;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
}

.btn-cta:hover {
    background-color: #059669;
}

/* Legal Pages */
.legal-content {
    padding: 80px 24px;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.legal-container h2 {
    font-size: 26px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1f2937;
}

.legal-container h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #374151;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 10px;
}

.legal-container em {
    color: #6b7280;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-overlay-content h1 {
        font-size: 36px;
    }

    .hero-overlay-content p {
        font-size: 18px;
    }

    .story-container h2,
    .about-text h2,
    .trust-container h2 {
        font-size: 28px;
    }

    .insight-text h2,
    .services-container h2 {
        font-size: 32px;
    }

    .benefit-cards {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
    }

    .about-container,
    .insight-inner,
    .contact-layout {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .expertise-stats {
        gap: 24px;
    }
}