/* 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-color: #fff;
}

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

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

a:hover {
    color: #1a3a1b;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom-color: #2c5f2d;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Hero Sections */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f9f5 0%, #e8f3e8 100%);
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5f9f5 0%, #e8f3e8 100%);
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
}

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

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

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

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

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

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    color: #555;
}

h2 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Philosophy Section */
.philosophy {
    background-color: #f9faf9;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    flex: 1 1 300px;
    text-align: center;
    padding: 2rem;
}

.philosophy-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

/* Featured Collection */
.featured-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.featured-text {
    flex: 1 1 500px;
}

.featured-text h2 {
    margin-bottom: 1.5rem;
}

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

.featured-visual {
    flex: 1 1 400px;
}

.featured-visual img {
    width: 100%;
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

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

.benefit-card h3 {
    margin-bottom: 1rem;
}

/* Process Section */
.process {
    background-color: #f9faf9;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    background-color: #f5f9f5;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

/* Values Section */
.values-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.values-text {
    flex: 1 1 500px;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.values-visual {
    flex: 1 1 400px;
}

/* Statistics */
.statistics {
    background-color: #2c5f2d;
    color: #fff;
}

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

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

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

.stat-label {
    font-size: 1.125rem;
}

/* FAQ Section */
.faq {
    background-color: #f9faf9;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #2c5f2d;
    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;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
}

/* Insights Section */
.insights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.insight-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

.insight-card h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    color: #fff;
    text-align: center;
}

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

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

/* Services/Collections */
.collections-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.collection-title {
    margin-top: 4rem;
    text-align: center;
}

.collection-description {
    text-align: center;
    max-width: 700px;
    margin: 1rem auto 3rem;
    color: #555;
    font-size: 1.125rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    margin: 0 auto 1.5rem;
}

.service-icon img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.service-card h3 {
    margin-bottom: 1rem;
}

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

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

/* Service Benefits */
.benefits-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-detail {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

.benefit-detail img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Process Detail */
.process-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.process-text {
    flex: 1 1 500px;
}

.process-step-detail {
    margin-bottom: 2rem;
}

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

.process-visual {
    flex: 1 1 400px;
}

/* Sizing Guide */
.sizing-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.sizing-info,
.sizing-tips {
    flex: 1 1 450px;
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

.sizing-list,
.care-list {
    list-style: none;
    padding-left: 0;
}

.sizing-list li,
.care-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #555;
}

.sizing-list li:before,
.care-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    flex: 1 1 300px;
    text-align: center;
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

.contact-icon {
    margin: 0 auto 1.5rem;
}

.contact-icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.showroom-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.showroom-text {
    flex: 1 1 500px;
}

.showroom-visual {
    flex: 1 1 400px;
}

.directions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.direction-method {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

.company-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.company-info-block {
    flex: 1 1 400px;
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

.response-times {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.response-item {
    flex: 1 1 300px;
    padding: 1.5rem;
    background-color: #f9faf9;
    border-radius: 8px;
    text-align: center;
}

.other-contacts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

/* About Page */
.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1 1 500px;
}

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

.story-visual {
    flex: 1 1 400px;
}

.mission {
    background-color: #f9faf9;
}

.mission-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    color: #555;
}

.mission-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.mission-block {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.mission-block h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    text-align: center;
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

.member-icon {
    margin: 0 auto 1.5rem;
}

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

.member-role {
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.values-list {
    margin-top: 2rem;
}

.value-detailed {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

.value-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-header img {
    width: 50px;
    height: 50px;
}

.value-header h3 {
    margin: 0;
    color: #2c5f2d;
}

.timeline {
    margin-top: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    min-width: 80px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.commitments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

.commitment-card h3 {
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.partners-list {
    margin-top: 2rem;
}

.partner-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

.partner-item h3 {
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f9f5 0%, #e8f3e8 100%);
    text-align: center;
}

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

.thank-you-icon {
    margin: 0 auto 2rem;
}

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

.thank-you-message {
    font-size: 1.125rem;
    color: #555;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    flex: 1 1 300px;
    text-align: center;
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
}

.step-icon {
    margin: 0 auto 1.5rem;
}

.step-icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.explore-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.explore-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f9faf9;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
}

.explore-icon {
    margin: 0 auto 1.5rem;
}

.explore-icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.visit-info {
    background-color: #f9faf9;
    text-align: center;
}

.visit-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.visit-detail-item {
    flex: 1 1 200px;
}

.visit-cta {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    color: #fff;
    text-align: center;
}

.visit-cta h2 {
    color: #fff;
}

.cta-address {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Legal Pages */
.legal-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5f9f5 0%, #e8f3e8 100%);
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.legal-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-date {
    color: #777;
    font-style: italic;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #2c5f2d;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8f3e8;
}

.legal-section h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

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

.legal-section li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.cookie-table {
    margin-top: 2rem;
}

.cookie-item {
    padding: 1.5rem;
    background-color: #f9faf9;
    border-radius: 8px;
    margin-bottom: 1rem;
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1001;
    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: 1.5rem;
}

.cookie-content p {
    flex: 1 1 500px;
    margin: 0;
    color: #555;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

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

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

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

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

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

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

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

.cookie-option p {
    margin: 0.5rem 0 0 1.75rem;
    font-size: 0.875rem;
    color: #777;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 20px;
        border-bottom: none;
    }

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

    h2 {
        font-size: 1.75rem;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .commitment-card,
    .benefit-detail,
    .direction-method {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .page-hero h1 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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