/* About page container */
.about-container {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 2rem;
}

.about-title {
    color: var(--text-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Section styles */
.about-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Content with image layout */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Timeline styles */
.history-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

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

.timeline-item::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.year {
    font-weight: bold;
    color: var(--primary-color);
}

.description {
    color: var(--text-color);
    line-height: 1.6;
}

/* Company info table */
.company-info {
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.info-table th {
    width: 200px;
    color: var(--primary-color);
    font-weight: bold;
    background-color: #f8f9fa;
}

/* Privacy policy styles */
.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-policy dl {
    display: grid;
    gap: 2rem;
}

.privacy-policy dt {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.privacy-policy dd {
    color: var(--text-color);
    line-height: 1.8;
    margin-left: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .about-container {
        padding: 1rem;
    }

    .about-title {
        font-size: 2rem;
    }

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

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

    .section-image {
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .info-table th {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }

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

    .info-table th,
    .info-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
} 