/* ========================================
   Company Overview Page
   ======================================== */

.company-overview-section {
    padding: 120px 0 80px;
    background: white;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 20px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.company-info-table-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 60px;
}

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

.company-info-table th,
.company-info-table td {
    padding: 24px 32px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.company-info-table th {
    width: 180px;
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.company-info-table td {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.company-info-table tr:last-child th,
.company-info-table tr:last-child td {
    border-bottom: none;
}

.company-description,
.company-history {
    margin-bottom: 60px;
}

.company-description h2,
.company-history h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid var(--primary-color);
}

.description-content,
.history-content {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-dark);
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.description-content p,
.history-content p {
    margin-bottom: 1.5em;
}

.description-content p:last-child,
.history-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 968px) {
    .company-overview-section {
        padding: 100px 0 60px;
    }

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

    .company-info-table th,
    .company-info-table td {
        padding: 16px 20px;
    }

    .company-info-table th {
        width: 120px;
        font-size: 0.9375rem;
    }

    .company-info-table td {
        font-size: 0.9375rem;
    }

    .company-description h2,
    .company-history h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .company-overview-section {
        padding: 80px 0 60px;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 0.875rem;
    }

    .company-info-table-wrapper {
        border-radius: 0;
    }

    .company-info-table th,
    .company-info-table td {
        display: block;
        width: 100%;
        padding: 12px 20px;
    }

    .company-info-table th {
        background: var(--primary-color);
        color: white;
        font-size: 0.875rem;
        border-bottom: none;
    }

    .company-info-table td {
        background: white;
        padding: 16px 20px;
        border-bottom: 2px solid #f5f5f5;
    }

    .company-info-table tr {
        display: block;
        margin-bottom: 0;
    }

    .company-description h2,
    .company-history h2 {
        font-size: 1.375rem;
    }

    .description-content,
    .history-content {
        padding: 20px;
        font-size: 1rem;
    }
}
