.company-card {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 15px;
}
.company-logo {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}
.description-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 25px;
    border-left: 2px solid #e8eaf1;
}
h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .description-container {
        padding-left: 0;
        border-left: none;
        padding-top: 20px;
        border-top: 2px solid #e8eaf1;
        margin-top: 20px;
    }
}