/* Base Styles */
:root {
    --primary: #008080;
    --primary-light: #b3e0e0;
    --primary-dark: #006666;
    --secondary: #f5f5f5;
    --dark: #333333;
    --light: #ffffff;
    --gray: #eeeeee;
    --gray-dark: #666666;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--light);
}

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

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

/* Header */
header {
    background-color: var(--light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 1rem;
    border-radius: 50%;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary);
    font-weight: 700;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    padding-bottom: 0.5rem;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after, 
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: var(--gray);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(135deg, rgba(0, 128, 128, 0.1) 0%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    max-width: 550px;
    margin-left: 2rem;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Features Section */
.features {
    background-color: var(--light);
    padding: 6rem 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

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

/* Blog Preview Section */
.blog-preview {
    background-color: var(--gray);
    padding: 6rem 0;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    background-color: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.post-content p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

/* Unknown Facts Section */
.unknown-facts {
    background-color: var(--light);
    padding: 6rem 0;
}

.unknown-facts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.facts-container {
    max-width: 800px;
    margin: 0 auto;
}

.fact-item {
    display: flex;
    margin-bottom: 2rem;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-right: 1.5rem;
    line-height: 1;
}

.fact-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.fact-content p {
    color: var(--gray-dark);
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary);
    padding: 5rem 0;
    text-align: center;
    color: var(--light);
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    border-radius: 50%;
}

.footer-logo h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
    color: var(--light);
    margin-bottom: 1.25rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--light);
}

.footer-contact h4 {
    color: var(--light);
    margin-bottom: 1.25rem;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p i {
    margin-right: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light);
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    overflow: hidden;
}

.cookie-content {
    padding: 1.5rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: var(--light);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0;
}

/* About Page Styles */
.about-intro {
    padding: 5rem 0;
    background-color: var(--light);
}

.about-intro .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
}

.our-team {
    background-color: var(--gray);
    padding: 5rem 0;
}

.our-team h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.team-member p:first-of-type {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.company-values {
    padding: 5rem 0;
    background-color: var(--light);
}

.company-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--gray);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.company-history {
    background-color: var(--gray);
    padding: 5rem 0;
}

.company-history h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 100px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
}

.timeline-date {
    width: 100px;
    padding-right: 2rem;
    text-align: right;
    font-weight: bold;
    color: var(--primary);
}

.timeline-content {
    flex: 1;
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-left: 2rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--primary);
    border-radius: 50%;
    left: -29px;
    top: 20px;
}

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

/* Products Page Styles */
.products-intro {
    padding: 3rem 0;
    background-color: var(--light);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
}

.product-list {
    padding: 5rem 0;
    background-color: var(--light);
}

.product-item {
    display: flex;
    margin-bottom: 4rem;
    background-color: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-image {
    flex: 1;
    max-width: 40%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    flex: 1.5;
    padding: 2.5rem;
}

.product-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-description {
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    display: inline-flex;
}

.product-details-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.product-price {
    display: flex;
    align-items: baseline;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0;
}

.tax {
    margin-left: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.product-usage {
    background-color: var(--gray);
    padding: 5rem 0;
}

.product-usage h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
    background-color: var(--light);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--light);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

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

.product-testimonials {
    padding: 5rem 0;
    background-color: var(--light);
}

.product-testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: var(--gray);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

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

.testimonial-author {
    font-weight: bold;
    text-align: right;
}

/* Blog Page Styles */
.blog-intro {
    padding: 3rem 0;
    background-color: var(--light);
}

.blog-posts {
    padding: 5rem 0;
    background-color: var(--light);
}

.blog-posts .post-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.post-card.large {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 1rem;
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.post-date, .post-category {
    display: inline-flex;
    align-items: center;
}

.blog-categories {
    background-color: var(--gray);
    padding: 5rem 0;
}

.blog-categories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background-color: var(--primary);
    color: var(--light);
}

.category-card:hover h3 {
    color: var(--light);
}

.category-card:hover svg path {
    stroke: var(--light);
}

.category-icon {
    margin-bottom: 1.5rem;
    display: inline-flex;
}

.category-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.category-card p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-bottom: 0;
    transition: var(--transition);
}

.category-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Page Styles */
.contact-intro {
    padding: 3rem 0;
    background-color: var(--light);
}

.contact-main {
    padding: 5rem 0;
    background-color: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.contact-form-container {
    background-color: var(--light);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
}

.contact-form-container h2 {
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form .required {
    color: #e74c3c;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.contact-form button {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.info-icon {
    display: inline-flex;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-card p {
    margin-bottom: 0.25rem;
}

.info-card .note {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.social-links {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.social-links h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.social-icons-large {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-icon-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--gray);
    padding: 0.75rem 1.25rem;
    border-radius: 40px;
    transition: var(--transition);
}

.social-icon-link:hover {
    background-color: var(--primary);
    color: var(--light);
}

.social-icon-link:hover svg path {
    stroke: var(--light);
}

.contact-map {
    background-color: var(--gray);
    padding: 5rem 0;
}

.contact-map h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq {
    padding: 5rem 0;
    background-color: var(--light);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    background-color: var(--light);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    display: inline-flex;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background-color: var(--light);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-dark);
}

.modal-icon {
    margin: 0 auto 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.close-btn {
    margin-top: 1.5rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        margin-bottom: 2.5rem;
    }

    .hero-image {
        max-width: 100%;
        margin-left: 0;
        justify-content: center;
    }

    .about-intro .container {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .product-item {
        flex-direction: column;
    }

    .product-image {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 1rem;
    }

    nav ul {
        justify-content: center;
    }

    nav ul li {
        margin: 0 0.75rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 1rem;
    }

    .newsletter-form button {
        border-radius: 4px;
    }

    .post-card.large {
        grid-column: span 1;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 3rem 0;
    }

    .feature-grid, .post-grid, .team-grid, .values-grid {
        grid-template-columns: 1fr;
    }

    .fact-item {
        flex-direction: column;
    }

    .fact-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-date {
        width: 50px;
        text-align: left;
        padding-right: 1rem;
    }

    .timeline-content {
        margin-left: 1rem;
    }

    .timeline-content::before {
        left: -20px;
    }
}
