.company-info {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: justify;
}

.company-info p {
    margin-bottom: 1rem;
}

.founders {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.founder {
    flex: 1;
    background-color: var(--apple-gray);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.founder:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.founder h3 {
    color: var(--apple-blue);
    margin-bottom: 1rem;
}

.founder p {
    text-align: justify;
}

@media (max-width: 768px) {
    .founders {
        flex-direction: column;
    }
}

