/* About US Page Styles */

/* Page Header */
.page-header {
    margin-top: 5rem;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Page Content */
.page-content {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 3rem;
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f97316;
    padding-bottom: 0.5rem;
}

.page-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

/* Company Overview Section */
.company-overview {
    margin-bottom: 2rem;
}

.company-overview h2 {
    border-bottom: 3px solid #f97316;
}

/* Vision Section */
.vision-section {
    background-color: #fff7ed;
    border-left: 4px solid #f97316;
    padding: 1.5rem;
    margin: 2rem 0;
}

.vision-section h3 {
    color: #c2410c;
    margin-top: 0;
}

/* History Timeline */
.history-timeline {
    margin-top: 2rem;
}

.history-timeline .timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
    width: 100% !important;
    display: inline-block;
}

.history-timeline .timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background-color: #f97316;
    border-radius: 50%;
}

.history-timeline .timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1.2rem;
    bottom: -2rem;
    width: 2px;
    background-color: #e5e7eb;
}

.history-timeline .timeline-item:last-child::after {
    display: none;
}

.timeline-date {
    font-weight: 600;
    color: #f97316;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.timeline-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Page Navigation */
.page-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.page-navigation a {
    color: #f97316;
    font-weight: 500;
    transition: color 0.2s ease;
}

.page-navigation a:hover {
    color: #ea580c;
}

/* PC-only Design - Remove Responsive Styles */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.125rem;
    }
    
    .page-content {
        padding: 1rem;
    }
    
    .page-content h2 {
        font-size: 1.5rem;
    }
    
    .history-timeline     .history-timeline .timeline-item {
        padding-left: 1.5rem;
    }
    
    .page-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .page-content {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
    }
}