/* ===== SECTION ===== */
section {
    padding: 0;
    border-bottom: 1px solid var(--border-color);
}

section:last-child {
    border-bottom: none;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== COMPANY OVERVIEW ===== */

.overview-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.overview-row {
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-row:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.overview-row:hover::before {
    opacity: 1;
}

.overview-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.overview-row:hover .overview-icon {
    background: rgba(0, 255, 136, 0.2);
    transform: scale(1.1);
}

.overview-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.overview-content {
    flex: 1;
}

.overview-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-value {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.overview-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.overview-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .overview-table {
        grid-template-columns: 1fr;
    }

    .overview-row {
        flex-direction: column;
        text-align: center;
    }

    .overview-icon {
        margin: 0 auto;
    }
}
